website/conservancy/templates/base_blog.html
Ben Sturmfels 85822cfd9f
blog: Remove RSS feed links next to individual tags
Instead the tags are now added to the RSS feed link at the top of the page when
in use.
2025-07-23 21:57:51 +10:00

39 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/{% if query_string %}?{{ query_string }}{% endif %}" />
{% 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></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></li>
{% endfor %}
</ul>
</div>
</div>
{% endblock %}