bgneal@1: {% extends 'band/base.html' %}
bgneal@1: {% load markup %}
bgneal@1: {% block title %}The Madeira | Press{% endblock %}
bgneal@1: {% block content %}
bgneal@1: <h1>Madeira Press, Articles, &amp; Reviews</h1>
bgneal@1: {% if articles %}
bgneal@1:    <a name="Contents">&nbsp;</a>
bgneal@1:    <h2>Contents</h2>
bgneal@1:    <ul>
bgneal@1:    {% for article in articles %}
bgneal@1:       <li><a href="#article_{{ article.id }}">{{ article.title }}</a></li>
bgneal@1:    {% endfor %}
bgneal@1:    </ul>
bgneal@1: 
bgneal@1:    {% for article in articles %}
bgneal@1:       <a name="article_{{ article.id }}">&nbsp;</a>
bgneal@1:       <h2>{{ article.title }}</h2>
bgneal@1:       {% if article.markup_enabled %}
bgneal@1:          {{ article.text|textile }}
bgneal@1:       {% else %}
bgneal@1:          {{ article.text|safe|linebreaks }}
bgneal@1:       {% endif %}
bgneal@1:       <div class="article-source">
bgneal@1:       {{ article.source|safe|linebreaks }}
bgneal@1:       </div>
bgneal@1:       {% if article.url %}
bgneal@1:       <a href="{{ article.url }}" target="_blank">Original article</a>
bgneal@1:       {% endif %}
bgneal@1:       {% if article.pdf and article.url %}
bgneal@1:       |
bgneal@1:       {% endif %}
bgneal@1:       {% if article.pdf %}
bgneal@1:       <a href="{{ article.get_pdf_url }}" target="_blank">Original article as PDF</a>
bgneal@1:       <a href="http://www.adobe.com/products/acrobat/readstep2.html">
bgneal@1:          <img src="{{ MEDIA_URL }}images/get_adobe_reader.gif" alt="Adobe Reader" title="Get Adobe Reader" border="0"
bgneal@1:          align="middle" /></a>
bgneal@1:       {% endif %}
bgneal@1:       <p><a class="intLink" href="#Contents">Top</a></p>
bgneal@1:    {% endfor %}
bgneal@1: 
bgneal@1: {% else %}
bgneal@1: No articles at this time.
bgneal@1: {% endif %}
bgneal@1: {% endblock %}