website/www/templates/base_blog.html
Ben Sturmfels 531a97a3c9
Eliminate "conservancy" and "apps" subdirectories
The directory nesting is unnecessary here and confusing to navigate. I've moved
all apps to the project subdirectory, currently called "www", but soon to be
renamed "conservancy".

I've also moved manage.py to the top-level directory.
2023-10-25 12:36:39 +11:00

41 lines
1.2 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" class="mw8 center ph2 ph3">
<div id="mainContent">{% block content %}{% endblock %}</div>
<div id="sidebar" class="{% block submenuselection %}{% endblock %}">
{% if all_year_list %}
<h2><a href="/blog/">See all blog posts&hellip;</a></h2>
<!-- <p><a href="/blog/query/">Query...</a></p> -->
<h2>Blog Index by Year</h2>
<ul>
{% for year in all_year_list reversed %}<li><a href="/blog/{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
</ul>
{% endif %}
<h2>Blogs by Tag</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>
<h2>Blogs by Author</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>
</div>
</div>
{% endblock %}