bob@14: {% extends 'base.html' %} bob@14: {% load core_tags %} bob@14: {% block title %}News{% endblock %} bob@14: bob@14: {% block content %} bob@14: {% navbar 'news' %} bob@14: <h1>News</h1> bob@14: <dl> bob@14: {% for news in object_list %} bob@38: <article id="article"><h2>{{ news.title }} {% if news.is_new %}<span class="label success">New</span>{% endif %}</h2> bob@39: <div>{{ news.content|safe }}</div> bob@38: <small><b>{{ news.date }}</b></small> bob@38: </article> bob@38: bob@14: {% endfor %} bob@14: </dl> bob@14: bob@14: {% endblock %}