Ben Sturmfels
531a97a3c9
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.
43 lines
1.9 KiB
HTML
43 lines
1.9 KiB
HTML
{% extends "base_news.html" %}
|
|
{% block subtitle %}News - {% endblock %}
|
|
|
|
{% block outercontent %}
|
|
<div id="container" class="mw8 center ph2 ph3">
|
|
<div id="mainContent">
|
|
<div class="breadcrumbs">
|
|
<p><a href="/">Home</a> / <a href="/news/">News</a></p>
|
|
</div>
|
|
<h1><a href="/feeds/news/" class="feedlink"><img src="/img/feed-icon-14x14.png" alt="[RSS]"/></a> Conservancy News</h1>
|
|
|
|
|
|
{% ifnotequal news.number 1 %}<p>(Page {{ news.number }} of {{ news.paginator.num_pages }})</p>{% endifnotequal %}
|
|
|
|
{% for pressr in news %}
|
|
{% if forloop.first %}
|
|
{% include "news/pressrelease_partial.html" with pressr=pressr show="summary" only %}
|
|
{% else %}
|
|
{% include "news/pressrelease_partial.html" with pressr=pressr show="dateline" only %}
|
|
{% endif %}
|
|
{% endfor %}
|
|
|
|
<p>
|
|
{% if news.has_next %}<a class="next_page_button" href="?page={{ news.next_page_number }}">Next page (older) »</a>{% endif %}
|
|
{% if news.has_previous %}<a href="?page={{ news.previous_page_number }}">« Previous page (newer)</a>{% endif %}
|
|
</p>
|
|
{% if news.paginator.num_pages > 1 %}<p class="pagination_list"> {% for pagenum in news.paginator.page_range %}{% ifequal pagenum news.number %}[{{ pagenum }}]{% else %}<a href="?page={{ pagenum }}">{{ pagenum }}</a>{% endifequal %} {% endfor %}</p>{% endif %}
|
|
</div>
|
|
|
|
<div id="sidebar" class="{% block submenuselection %}{% endblock %}">
|
|
<h2>News Index by Year</h2>
|
|
<ul>
|
|
{% for year in date_list reversed %}<li class="{{ year|date:"Y" }}"><a href="{{ year|date:"Y" }}/">{{ year|date:"Y" }}</a></li>{% endfor %}
|
|
</ul>
|
|
<h2>Resources for Journalists</h2>
|
|
<ul>
|
|
<li class="News"><a href="/news/">News</a></li>
|
|
<li class="PressKit"><a href="/press/">Press Kit</a></li>
|
|
<li class="Glossary"><a href="/copyleft-compliance/glossary.html">Glossary</a></li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|