Add some better logic to the resizing, add a better contacts page. sidebar hiding still in the works
This commit is contained in:
parent
d8893f0463
commit
67de08a5b8
19 changed files with 180 additions and 99 deletions
18
templates/authors/single.html
Normal file
18
templates/authors/single.html
Normal file
|
@ -0,0 +1,18 @@
|
|||
{% extends "base.html" %}
|
||||
|
||||
{% block content %}
|
||||
<h2>
|
||||
author: {{ term.name }}
|
||||
({{ term.pages | length }} post{{ term.pages | length | pluralize }})
|
||||
</h2>
|
||||
|
||||
<div class="page-intro">
|
||||
<p class="larger">view all <a href="/authors">authors</a>.</p>
|
||||
</div>
|
||||
|
||||
<ul class="postlist">
|
||||
{% for page in term.pages | sort(attribute="date") | reverse %}
|
||||
{% include "blog-entry.html" %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% endblock content %}
|
Loading…
Add table
Add a link
Reference in a new issue