41 lines
		
	
	
	
		
			1.1 KiB
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			41 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="mainContent">{% block content %}{% endblock %}</div>
 | |
|          <div id="sidebar" class="{% block submenuselection %}{% endblock %}">
 | |
| {% 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>
 | |
| <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 %}
 |