Mercurial > public > sg101
view gpp/templates/news/index.html @ 484:bbbc357ac5f3
For #233; first commit for adding social media sharing buttons to news stories.
author | Brian Neal <bgneal@gmail.com> |
---|---|
date | Tue, 18 Oct 2011 00:04:37 +0000 |
parents | 88b2b9cb8c1f |
children | f0f3966ea44f |
line wrap: on
line source
{% extends 'news/base.html' %} {% load script_tags %} {% block title %}News: {{ title }}{% endblock %} {% block news_css %} <link rel="stylesheet" type="text/css" href="{{ STATIC_URL }}css/pagination.css" /> {% endblock %} {% block custom_js %} {% script_tags "social" %} {% endblock %} {% block news_content %} <h3>{{ title }}</h3> {% if page.object_list %} {% include 'core/pagination.html' %} {% for story in page.object_list %} {% include 'news/story_summary.html' %} {% endfor %} {% include 'core/pagination.html' %} <div style="clear:right;"></div> {% else %} <p>No news at this time.</p> {% endif %} {% endblock %}