You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
| 123456789101112131415 |
- {% if articles|length %}
- {% for article in articles %}
-
- {% custom %}
-
- {# Striped table #}
- <tr class="{% cycle odd,even %}">
- <td>{{ article|default:"Hi... " }}</td>
- <td {% if article.today %}class="today"{% endif %}>
- Published on {{ article.date }}
- </td>
- </tr>
-
- {% endfor %}
- {% endif %}
|