website/www/conservancy/templates/base_blog.html
Bradley M. Kuhn 855584408b Move blog index to be part of base template.
This way, it's not on the bottom of pages.  This shouldn't cause
trouble, since when date_list isn't defined, nothing is shown by this
code.
2015-03-04 15:32:32 -08:00

40 lines
1.1 KiB
HTML

{% extends "base_conservancy.html" %}
{% block category %}blog{% endblock %}
{% block head %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/" />
{% endblock %}
{% block outercontent %}
<div id="container">
<div id="sidebar" class="{% block submenuselection %}other{% endblock %}">
<h2>Authors</h2>
<ul>
{% for author in all_authors %}
<li><a href="/blog/?author={{ author.username }}">{{ author.formal_name }}</a>
(<a href="/feeds/blog/?author={{ author.username }}">rss</a>)</li>
{% endfor %}
</ul>
<h2>Tags</h2>
<ul>
{% for tag in all_tags %}
<li><a href="{{ tag.get_absolute_url }}">{{ tag.label }}</a>
(<a href="/feeds/blog/?tag={{ tag.slug }}">rss</a>)</li>
{% endfor %}
</ul>
{% if date_list %}
<h3>Blog Index by Year</h3>
<ul>
{% for year in date_list reversed %}<li><a href="{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
</ul>
{% endif %}
<h2><a href="/blog/">See all posts&hellip;</a></h2>
<!-- <p><a href="/blog/query/">Query...</a></p> -->
</div>
<div id="mainContent">{% block content %}{% endblock %}
</div>
</div>
{% endblock %}