forked from FreshRSS/documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
68 lines (59 loc) · 1.5 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>FreshRSS documentation</title>
<style>
@font-face {
font-family: "SourceSansPro";
src: url("http://freshrss.org/theme/fonts/SourceSansPro.ttf");
}
body {
font-family: "SourceSansPro", sans-serif;
font-size: 100%;
background: #ecf0f1;
}
a {
color: #0062BE;
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
ul {
line-height: 1.7em;
}
.container {
margin: 100px 10px 50px 25%;
}
footer {
margin: 50px 10px 100px 25%;
}
footer ul {
padding: 0;
}
footer li {
display: inline-block;
}
</style>
</head>
<body>
<div class="container">
<img alt="FreshRSS logo" src="http://freshrss.org/images/freshrss_logo.png" />
<h1>FreshRSS documentation</h1>
<p>Please note the documentation is not complete yet!</p>
<h2>Choose your language</h2>
<ul>
<li><a href="/en">English</a></li>
<li><a href="/fr">Français</a></li>
</ul>
</div>
<footer>
<ul>
<li><a target="_blank" href="http://freshrss.org">freshrss.org</a> ⋅</li>
<li><a target="_blank" href="https://github.com/FreshRSS/FreshRSS">GitHub</a> ⋅</li>
<li><a target="_blank" href="https://github.com/FreshRSS/documentation/blob/master/README.md">How to contribute</a></li>
</ul>
</footer>
</body>
</html>