18 lines
395 B
HTML
18 lines
395 B
HTML
{% extends "base_news.html" %}
|
|
|
|
{% block title %}SFC News Index - {{ day|date:"F j, Y" }}{% endblock %}
|
|
|
|
{% block content %}
|
|
|
|
<h2>SFLC 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 %}
|