Initial commit.
This commit is contained in:
commit
b2e2fde818
36 changed files with 1475 additions and 0 deletions
20
themes/blue/html/archives.html
Normal file
20
themes/blue/html/archives.html
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{% extends "/html/base.html" %}
|
||||
{%block subtitle %}: Archives{% endblock %}
|
||||
{% block content %}
|
||||
<div id="posts">
|
||||
<div id="page-header">
|
||||
<h2>Archives</h2>
|
||||
</div>
|
||||
{% for group in groups %}
|
||||
<h4>{{group.group}}</h4>
|
||||
<ul>
|
||||
{% for post in group.posts %}
|
||||
<li>
|
||||
{{post.date|date:"MMM dd"}} - <a href="{{post.uri}}">{{post.title}}</a>
|
||||
</li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
{% endblock %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue