+++ /dev/null
-Title: Trigger Warning
-
-If you are the sort of person who needs trigger warnings for things like sexism, transphobia, _&c._, you might not want to read this blog!—I'm not _trying_ to be offensive, of course, but I _really don't care_ if I accidentally hurt someone's feelings in the course of trying to explain my model of reality or even just be funny.
restrict "fiction" to "longform" (not dialogues) (I made the opposite call at some point, and I think I want to reverse it)
404 page??
glitchiness in "Editorial Process"
-link to archives page
-archives group posts by month
Pelican bug report or patch re spacing in file
favicon
"Read more" breaks (problem: plugin for this uses fixed length cutoff)
docutils==0.14
feedgenerator==1.9
html5lib==1.0.1
-Jinja2==2.9.6
+Jinja2==2.11.1
Markdown==2.6.9
MarkupSafe==1.0
pelican==3.7.1
--- /dev/null
+{% extends "base.html" %}
+
+{% block title %}{{ SITENAME }} - Archives{% endblock %}
+
+{% block content %}
+ <h2>Archives</h2>
+
+ <dl>
+ {% for article in dates %}
+
+ {% if loop.first or loop.previtem.date.month != article.date.month %}
+ <h4><strong>{{ article.date.strftime('%B %Y') }}</strong></h4>
+ {% endif %}
+
+ <dd>{{ article.date.strftime('%d') }}   <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
+ {% endfor %}
+ </dl>
+{% endblock %}
{% for p in pages %}
<a href="{{ SITEURL }}/{{ p.url }}">{{ p.title }}</a>
{% if not loop.last %}-{% endif %}
- {% endfor %}
+ {% endfor %}
+ -
+ <a href="{{ SITEURL }}/archives/">Archives</a>
</nav>
{% endif %}
<a href="{{ SITEURL }}" class="title">☆✦ {{ SITENAME }} ✦☆♀ …</a>