{% 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>

{% if articles %}
<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>{{ article.date|strftime('%Y-%m-%d') }}: <a href='{{ SITEURL }}/{{ article.url }}'>{{ article.title }}</a></li>
{% endfor %}
</ul>
{% endif %}

<h3>Select pages</h3>
<ul>
  <li><a href="/specs/functional.html">Functional spec</a></li>
</ul>

{% endblock content %}