view mysite/templates/band/news.html @ 15:1b449b67af27

Use newer version of jquery hosted on google.
author Brian Neal <bgneal@gmail.com>
date Sun, 29 Aug 2010 18:45:23 +0000
parents 0dcfcdf50c62
children
line wrap: on
line source
{% extends 'band/base.html' %}
{% load markup %}
{% block title %}The Madeira | News{% endblock %}
{% block content %}
<h1>News</h1>
{% if news %}
   {% for story in news %}
      <h2>{{ story.date|date:"F d, Y" }}&nbsp;
      {% if story.title %}
      &bull; {{ story.title }}
      {% endif %}
      </h2>
      <div>
         {% if story.photo %}
            <img src="{{ story.photo.url }}" class="floatLeftBox" 
               alt="{{ story.photo_caption }}" title="{{ story.photo_caption }}" border="0" />
         {% endif %}
         {% if story.markup_enabled %}
            {{ story.text|textile }}
         {% else %}
            {{ story.text|safe|linebreaks }}
         {% endif %}
         {% if story.author %}
            <p><em>--&nbsp;{{ story.author }}</em></p>
         {% endif %}
      </div>
   {% endfor %}
{% else %}
No news at this time.
{% endif %}
{% endblock %}