Browse Source

switching API/feeds order on the webpage

master
manetta 3 years ago
parent
commit
e4cb20f667
  1. 22
      templates/index.html

22
templates/index.html

@ -11,17 +11,6 @@
<img src="/img/multifeeder.svg">
</h1>
<div class="add">(<a href="https://git.vvvvvvaria.org/varia/multifeeder/src/branch/master/feeds.txt" target="_blank">Add a feed</a>)</div>
<section id="feeds">
<h1>Currently feeding</h1>
<p>The following feeds are rendered in the Multifeeder. The feeds in this list include streams of projects and activities in and around Varia.</p>
{% for x, feed in db['feeds'].items() %}
<div class="feed el{{ x }}">
<div class="title">{{ feed.title }}</div>
<div class="description">{{ feed.description }}</div>
<div class="rss"><a href="{{ feed.rss }}" target="_blank">{{ feed.rss }}</a></div>
</div>
{% endfor %}
</section>
<section id="api">
<h1>Aggregated Publishing Interface (API)</h1>
<p>This is the Multifeeder API :---), an Aggregated Publishing Interface supporting any kinds of publishing experiments. Currently the API is used to feed <a href="https://televex.vvvvvvaria.org">Varia's TeleVex</a>.</p>
@ -50,6 +39,17 @@
Format: JSON
</div>
</section>
<section id="feeds">
<h1>Currently feeding</h1>
<p>The following feeds are rendered in the Multifeeder. The feeds in this list include streams of projects and activities in and around Varia.</p>
{% for x, feed in db['feeds'].items() %}
<div class="feed el{{ x }}">
<div class="title">{{ feed.title }}</div>
<div class="description">{{ feed.description }}</div>
<div class="rss"><a href="{{ feed.rss }}" target="_blank">{{ feed.rss }}</a></div>
</div>
{% endfor %}
</section>
<footer>
<div>Multifeeding RSS streams into a point of access.</div>
<a href="https://git.vvvvvvaria.org/varia/multifeeder" target="_blank">https://git.vvvvvvaria.org/varia/multifeeder</a></footer>

Loading…
Cancel
Save