view madeira/templates/news/news_list.html @ 47:0e51e5be34b9

For issue #4, create an articles application and import old data.
author Brian Neal <bgneal@gmail.com>
date Tue, 20 Mar 2012 19:47:20 -0500
parents 966cde8635c0
children 0176eca97d1d
line wrap: on
line source
{% extends 'band/base.html' %}
{% block title %}The Madeira | News{% endblock %}
{% block content %}
<h1>News</h1>
{% if news_list %}
   {% for story in news_list %}
      {% if story.title %}
      <h2><a href="{{ story.get_absolute_url }}">{{ story.date|date:"F d, Y" }} &bull; {{ story.title }}</a></h2>
      {% else %}
      <h2><a href="{{ story.get_absolute_url }}">{{ story.date|date:"F d, Y" }}</a></h2>
      {% endif %}
      <div>{{ story.content|safe }}</div>
   {% endfor %}

   {% include 'pagination.html' %}

{% else %}
<p>No news at this time.</p>
{% endif %}

{% endblock %}