Add initial site config, content and copy of "simple" theme.
This commit is contained in:
commit
b23276291f
22 changed files with 754 additions and 0 deletions
14
themes/next.copyleft.org/templates/period_archives.html
Normal file
14
themes/next.copyleft.org/templates/period_archives.html
Normal file
|
@ -0,0 +1,14 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block title %}{{ SITENAME }} - {{ period | reverse | join(' ') }} archives{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<h1>Archives for {{ period | reverse | join(' ') }}</h1>
|
||||
|
||||
<dl>
|
||||
{% for article in dates %}
|
||||
<dt>{{ article.locale_date }}</dt>
|
||||
<dd><a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a></dd>
|
||||
{% endfor %}
|
||||
</dl>
|
||||
{% endblock %}
|
Loading…
Add table
Add a link
Reference in a new issue