|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>multifeeder</title>
|
|
|
|
<link rel="stylesheet" type="text/css" href="/css/stylesheet.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<h1 id="title">
|
|
|
|
<img src="/img/multifeeder.svg">
|
|
|
|
</h1>
|
|
|
|
<div align="center">(<a href="https://git.vvvvvvaria.org/varia/multifeeder/src/branch/master/feeds.txt" target="_blank">Add a feed</a>)</div>
|
|
|
|
<div align="center">Currently feeding:</div>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
<table>
|
|
|
|
<tbody>
|
|
|
|
{% for x, feed in db['feeds'].items() %}
|
|
|
|
<tr>
|
|
|
|
<td class="title">{{ feed.title }}</td>
|
|
|
|
<td class="link"><a href="{{ feed.link }}" target="_blank">{{ feed.link }}</a></td>
|
|
|
|
<td class="description">{{ feed.description }}</td>
|
|
|
|
</tr>
|
|
|
|
{% endfor %}
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
<br>
|
|
|
|
<br>
|
|
|
|
|
|
|
|
|
|
|
|
<section id="api">
|
|
|
|
<div class="accesspoint">
|
|
|
|
<h2>/API/latest/[num]</h2>
|
|
|
|
For example: <a href="/API/latest/5" target="_blank">https://multi.vvvvvvaria.org/API/latest/5</a>
|
|
|
|
<br>
|
|
|
|
(for the latest 5 posts in all feeds)
|
|
|
|
<br><br>
|
|
|
|
Format: JSON
|
|
|
|
</div>
|
|
|
|
<div class="accesspoint">
|
|
|
|
<h2>/API/today/</h2>
|
|
|
|
For example: <a href="/API/today/" target="_blank">https://multi.vvvvvvaria.org/API/today/</a>
|
|
|
|
<br>
|
|
|
|
(for the posts published today)
|
|
|
|
<br><br>
|
|
|
|
Format: JSON
|
|
|
|
</div>
|
|
|
|
<div class="accesspoint">
|
|
|
|
<h2>/API/past/[days]</h2>
|
|
|
|
For example: <a href="/API/past/30" target="_blank">https://multi.vvvvvvaria.org/API/past/30</a>
|
|
|
|
<br>
|
|
|
|
(for all the posts published in the last 30 days)
|
|
|
|
<br><br>
|
|
|
|
Format: JSON
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
</body>
|
|
|
|
</html>
|