default.txt 401 B

12345678910111213141516
  1. {% if articles|length %}
  2. {% for article in articles %}
  3. {# Striped table #}
  4. <tr class="{% cycle odd,even %}">
  5. <td>{{ article|default:"Hi... "|escape }}</td>
  6. <td {% if article.today %}class="today"{% endif %}>{{ article.date|date:'d.m.Y' }}</td>
  7. </tr>
  8. {% endfor %}
  9. {% endif %}
  10. {% comment %}
  11. Comments may be long and multiline.
  12. Markup is <em>not</em> highlighted within comments.
  13. {% endcomment %}