-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
53 lines (48 loc) · 1.64 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8" />
<title>ELI, Expression Libre Incongrue</title>
<link rel="stylesheet" href="style.css" type="text/css" />
</head>
<body>
<h1>ELI, Expression Libre Incongrue</h1>
<p>ELI est un système de <em>badge</em> que vous pouvez ajouter sur votre site web, votre blog, etc.<br />
Il affiche les 5 dernières activités de votre réseau GNU Social préféré.</p>
<p>Cette page permet de tester le résultat.</p>
<hr />
<p>ELI is a <em>badge</em> system you can add on your website, blog, etc.<br />
It displays your 5 last favorite GNU Social network activities.</p>
<p>This page permits to test the result.</p>
<hr />
<form id="loadForm">
<p>
<label for="profile_domain">URL : </label> <input type="text" id="profile_domain" value="https://status.fsf.org">
</p>
<p>
<label for="profile_type">Type : </label>
<select name="profile_type" form="loadForm" id="profile_type">
<option value="user">User</option>
<option value="group" selected>Group</option>
</select>
</p>
<p>
<label for="profile_name">Name : </label> <input type="text" id="profile_name" value="fsf">
</p>
<p>
<input type="submit" value="(re)Load">
</p>
</form>
<div id="elitimeline">
<p>Timeline activity...</p>
</div>
<script type="text/javascript" src="./eli.max.js">
var type = 'user'; // could be 'group' to follow a group
var user = 'debian';
var max = 5;
var tag = 'elitimeline';
</script>
<hr/>
<p>Retrouvez les sources de <a href="http://github.com/blankoworld/eli" title="Find ELI sources on Github">ELI sur Github</a>.</p>
</body>
</html>