Bradley M. Kuhn
09a4b021c1
During the recent improvements made on the website, the menus and submenu highlighting for selected menus fell into disarray. Correction requires changes to the CSS and templates both, because Django doesn't really have a convenient way to set variables in templates to use to solve this. There are still a few submenu items highlighting not working even after this commit. More work needs to be done.
40 lines
1.1 KiB
HTML
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 %}{% 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 all_year_list %}
|
|
<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><a href="/blog/">See all posts…</a></h2>
|
|
<!-- <p><a href="/blog/query/">Query...</a></p> -->
|
|
</div>
|
|
<div id="mainContent">{% block content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|