-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
81 lines (74 loc) · 2.53 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
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<title>moonmoon: simple web based feed aggregator in PHP</title>
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet' type='text/css'>
<link rel="stylesheet" href="css/screen.css?v=1">
</head>
<body>
<header>
<div>
<h1>moonmoon</h1>
<h2>moonmoon is a simple php app for showing several feeds on one page.</h2>
</div>
<img src="img/blue-moon.jpg" width="898" height="898" alt="">
</header>
<nav>
<a href="https://github.com/moonmoon/moonmoon/releases/download/9.0.0-rc.3/moonmoon-9.0.0-rc.3.zip" class="bt">Download 9.0.0-rc3</a> or <a href="https://github.com/moonmoon/moonmoon">fork on github</a>
</nav>
<div class="content">
<section>
<h2>FEATURES</h2>
<p>
Moonmoon is stupidly simple: it only aggregates feeds and
spits them out in one single page.<br> It does not archive articles,
it does not do comments nor votes.<br>
<!-- <a href="./demo/">Check out the demo page</a>. -->
</p>
<ul>
<li>Quick 2-step setup</li>
<li>Save resources: no database, no cron required</li>
<li>Easy-to-use administration panel</li>
<li>Standards compliant</li>
</ul>
</section>
<section>
<h2>INSTALLING</h2>
<ol>
<li>You need a web hosting with PHP 5.6, even if PHP 7.x is preferred.</li>
<li><a href="https://github.com/moonmoon/moonmoon/releases">Download the latest version</a></li>
<li>Extract the files.</li>
<li>Upload the files to your server (with FTP)</li>
<li>Go to http://<yoursite>/install.php</li>
</ol>
</section>
<section>
<h2>DEVELOPMENT</h2>
<p>
Moonmoon is free software and is released under BSD license.
</p>
<p>
The source code is currently hosted on <a href="https://github.com/moonmoon/moonmoon">GitHub</a>.
</p>
</section>
</div>
<div class="content">
<h2>FAQ</h2>
<dl>
<dt>Can I use cron to update the feeds?</dt>
<dd>
<p>
Yes. Simply set a cron job to make a GET request (curl/wget/etc) on <code>cron.php</code>
</p>
</dd>
</dl>
</div>
<footer>
<p>
Moonmoon is developed by <a href="http://svay.com/">Maurice Svay</a> and contributors. It includes the SimplePie library.
</p>
<p>Creative Commons Photo: Luc Viatour / www.Lucnix.be</p>
</footer>
</body>
</html>