2020-11-21 22:36:48 +01:00
<!DOCTYPE html>
< html lang = "{{ language }}" >
< head >
< meta charset = "utf-8" / >
< title > {{ title }}< / title >
< link rel = "stylesheet" type = "text/css" href = "{% block css %}stylesheet.css{% endblock %}" >
<!-- <link rel="alternate" type="application/rss+xml" href="recentchanges.rss"> -->
{% block scripts %}
{% endblock scripts %}
< / head >
< body >
{% set padoftheday = pads | random %}
< h1 > {{ title }}< / h1 >
< div id = "welcome" >
2020-12-04 16:16:48 +01:00
Welcome! The pages below have been deliberately published by their authors in order to share their thoughts, research and process in an early form. This page represents one of Varia's low-effort publishing tools. The pages are all produced through Varia's < a href = "https://pad.vvvvvvaria.org/" > Etherpad instance< / a > .
2020-11-21 22:36:48 +01:00
< br >
< br >
Etherpad is used as collaborative writing tool to take notes, create readers, coordinate projects and document gatherings that happen in and around Varia. For example < a href = "{{ padoftheday.link }}" > {{ padoftheday.padid }}< / a > .
< br >
< br >
This index is updated every 60 minutes.
< / div >
< table >
< thead >
< tr >
< th > name< / th >
< th > versions< / th >
<!-- <th>last edited</th> -->
<!-- <th>revisions</th> -->
<!-- <th>authors</th> -->
< / tr >
< / thead >
< tbody >
2020-12-04 17:17:50 +01:00
{% set allmagicwords = [] %}
2020-11-21 22:36:48 +01:00
{% for pad in pads %}
< tr >
< td class = "name" >
< a href = "{{ pad.link }}" > {{ pad.padid }}< / a >
< / td >
2020-12-04 16:16:48 +01:00
< td class = "versions" >
2020-11-21 22:36:48 +01:00
{% for v in pad.versions %}< a href = "{{ v.url }}" > {{ v.type }}< / a > {% endfor %}
< / td >
2020-12-04 16:16:48 +01:00
<!-- WOW -->
< td class = "magicwords" >
2020-12-04 16:46:09 +01:00
{% for magicword in pad.magicwords %}
< a class = "magicwords" href = "#{{ magicword }}" > {{ magicword }}< / a >
2020-12-04 17:17:50 +01:00
{{ allmagicwords.append(magicword) }}
2020-12-04 16:46:09 +01:00
{% endfor %}
2020-12-04 16:16:48 +01:00
< / td >
2020-11-21 22:36:48 +01:00
<!-- <td class="lastedited">{{ pad.lastedited_iso|datetimeformat }}</td> -->
<!-- <td class="revisions">{{ pad.revisions }}</td> -->
<!-- <td class="authors">{{ pad.author_ids|length }}</td> -->
< / tr >
{% endfor %}
< / tbody >
< / table >
2020-12-04 17:17:50 +01:00
< div id = "magicarea" >
{% for magicword in allmagicwords | unique %}
{% if magicword != "__PUBLISH__" %}
< div class = "magic" id = "{{magicword}}" >
< h2 > {{ magicword }}< / h2 >
< table >
< thead >
< tr >
< th > name< / th >
< th > versions< / th >
< / tr >
< / thead >
< tbody >
{% for pad in pads %}
{% if magicword in pad.magicwords %}
< tr >
< td class = "name" >
< a href = "{{ pad.link }}" > {{ pad.padid }}< / a >
< / td >
< td class = "versions" >
{% for v in pad.versions %}< a href = "{{ v.url }}" > {{ v.type }}< / a > {% endfor %}
< / td >
<!-- WOW -->
< td class = "magicwords" >
{% for magicword in pad.magicwords %}
< a class = "magicwords" href = "#{{ magicword }}" > {{ magicword }}< / a >
{% endfor %}
< / td >
< / tr >
{% endif %}
{% endfor %}
< / tbody >
< / table >
< / div >
{% endif %}
{% endfor %}
< / div >
2020-11-21 22:36:48 +01:00
< div id = "footer" >
< hr >
2020-12-04 17:17:50 +01:00
< p >
2020-11-21 22:36:48 +01:00
< small > This page is generated using < a href = "https://git.vvvvvvaria.org/varia/etherpump" > Etherpump< / a > . It is a command-line utility and python library that extends the multi writing and publishing functionalities of the Etherpad.< / small >
< br > < br >
< / p >
2020-12-04 16:16:48 +01:00
{% block info %}< p class = "info" > Last updated {{ timestamp }}.< / p > {% endblock %}
2020-11-21 22:36:48 +01:00
< / div >
< / body >
< / html >