12780197e5
"conservancy" within code and templates.
18 lines
410 B
HTML
18 lines
410 B
HTML
{% extends "base_news.html" %}
|
|
|
|
{% block title %}Conservancy News Index - {{ day|date:"F j, Y" }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>Conservancy News Index - {{ day|date:"F j, Y" }}</h2>
|
|
|
|
<ul>
|
|
|
|
{% for object in object_list %}
|
|
<li><a href="{{ object.get_absolute_url }}"><b>{{ object.headline|safe }}</b></a><br/>
|
|
<i>{{ object.pub_date|date:"F j, Y" }}</i></li>
|
|
{% endfor %}
|
|
|
|
</ul>
|
|
|
|
{% endblock %}
|