Files @ 79140d46a5c8
Branch filter:

Location: website/www/conservancy/templates/base_blog.html

bkuhn
Added blog templates.
{% extends "base_standard.html" %}

{% block category %}blog{% endblock %}

{% block head %}
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/" />
{% endblock %}

{% block internal_navigate %}

<h3>Authors</h3>
<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>

<h3>Tags</h3>
<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>

<p><a href="/blog/">All posts...</a></p>
<p><a href="/blog/query/">Query...</a></p>

{% endblock %}