exo-notes/monospace/templates/index.html

42 lines
1.2 KiB
HTML

{% extends "base.html" %}
{% block content_title %}{% endblock %}
{% block content %}
<h3>wntrmute :: exocortex</h3>
<p>This is a project to build an exocortex. It is a dump from my current
system into a format suitable for public sharing.</p>
<p>Current in-development milestone: <a href="/milestones/m1.html">M1</a>.</p>
{% if articles %}
<h3>Latest stream</h3>
<ul>
{% for article in dates|select_stream %}
<li>{{ article.date|strftime('%Y-%m-%d') }}: <a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></li>
{% endfor %}
</ul>
<h3>Recent posts</h3>
<ul>
{% for article in dates|filter_journal %}
<li>{{ article.date|strftime('%Y-%m-%d') }}: <a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></li>
{% endfor %}
</ul>
<h3>Recent journal entries</h3>
<p>Journal entries are writeups of stuff that happened over the course
of a day; the current day's entry might be updated over the course of
the day.</p>
<ul>
{% for article in dates|select_journal(limit=3) %}
<li> <a href='{{ SITEURL }}/{{ article.url }}'>{{ article.date|strftime('%Y-%m-%d') }}</a></li>
{% endfor %}
</ul>
{% endif %}
<h3>Select pages</h3>
<ul>
<li><a href="/specs/functional.html">Functional spec</a></li>
</ul>
{% endblock content %}