2010-10-04 16:15:53 +00:00
|
|
|
{% extends "base_conservancy.html" %}
|
2010-10-04 13:52:04 +00:00
|
|
|
|
|
|
|
{% block category %}blog{% endblock %}
|
|
|
|
|
|
|
|
{% block head %}
|
|
|
|
<link rel="alternate" type="application/rss+xml" title="RSS" href="/feeds/blog/" />
|
|
|
|
{% endblock %}
|
|
|
|
|
2010-10-04 16:15:53 +00:00
|
|
|
{% block outercontent %}
|
2023-10-20 05:48:21 +00:00
|
|
|
<div id="container" class="mw8 center ph2 ph3">
|
2021-11-19 06:02:59 +00:00
|
|
|
<div id="mainContent">{% block content %}{% endblock %}</div>
|
2021-10-20 18:34:24 +00:00
|
|
|
<div id="sidebar" class="{% block submenuselection %}{% endblock %}">
|
2021-10-23 19:50:28 +00:00
|
|
|
{% if all_year_list %}
|
|
|
|
|
|
|
|
<h2><a href="/blog/">See all blog posts…</a></h2>
|
|
|
|
<!-- <p><a href="/blog/query/">Query...</a></p> -->
|
|
|
|
|
|
|
|
<h2>Blog Index by Year</h2>
|
2010-10-04 13:52:04 +00:00
|
|
|
<ul>
|
2021-10-23 19:50:28 +00:00
|
|
|
{% for year in all_year_list reversed %}<li><a href="/blog/{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
|
2010-10-04 13:52:04 +00:00
|
|
|
</ul>
|
2021-10-23 19:50:28 +00:00
|
|
|
{% endif %}
|
2010-10-04 13:52:04 +00:00
|
|
|
|
2021-10-23 19:50:28 +00:00
|
|
|
<h2>Blogs by Tag</h2>
|
2010-10-04 13:52:04 +00:00
|
|
|
<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>
|
2021-10-23 19:50:28 +00:00
|
|
|
|
|
|
|
<h2>Blogs by Author</h2>
|
2015-03-04 23:32:32 +00:00
|
|
|
<ul>
|
2021-10-23 19:50:28 +00:00
|
|
|
{% 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 %}
|
2015-03-04 23:32:32 +00:00
|
|
|
</ul>
|
2010-10-04 16:15:53 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
2010-10-04 13:52:04 +00:00
|
|
|
{% endblock %}
|