view madeira/templates/articles/article_list.html @ 113:8a0076d7d041

Bootstrap: press.
author Brian Neal <bgneal@gmail.com>
date Sun, 20 Oct 2013 11:20:24 -0500
parents 15df2b1a0e88
children cfa730bbca6e
line wrap: on
line source
{% extends 'base.html' %}
{% load core_tags %}
{% block navblock %}{% navbar 'press' %}{% endblock %}
{% block title %}The Madeira | Press{% endblock %}
{% block content %}
<h1>Madeira Press, Articles, &amp; Reviews</h1>
{% if article_list %}
   <ul>
   {% for article in article_list %}
      <li><a href="{{ article.get_absolute_url }}">{{ article.title }}</a></li>
   {% endfor %}
   </ul>
{% else %}
   <p>No articles at this time.</p>
{% endif %}
{% endblock %}