Changeset - 399675d6c3f5
[Not reviewed]
0 1 0
Bradley M. Kuhn - 2 years ago 2021-10-23 19:50:28
bkuhn@sfconservancy.org
Rework blog menu order.
1 file changed with 15 insertions and 13 deletions:
0 comments (0 inline, 0 general)
www/conservancy/templates/base_blog.html
Show inline comments
...
 
@@ -6,35 +6,37 @@
 
<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>
 
{% 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 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 %}
 
{% for year in all_year_list reversed %}<li><a href="/blog/{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
 
</ul>
 
{% endif %}
 

	
 
<h2>Tags</h2>
 
<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>
 
{% if all_year_list %}
 
<h2>Blog Index by Year</h2>
 

	
 
<h2>Blogs by Author</h2>
 
<ul>
 
{% for year in all_year_list reversed %}<li><a href="/blog/{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
 
{% 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>
 
{% endif %}
 

	
 
<h2><a href="/blog/">See all posts&hellip;</a></h2>
 
<!-- <p><a href="/blog/query/">Query...</a></p> -->
 
         </div>
 
               <div id="mainContent">{% block content %}{% endblock %}
 
               </div>
 
   </div>
 
{% endblock %}
0 comments (0 inline, 0 general)