presentations/highlight-js/test/detect/django/default.txt

16 lines
296 B
Text
Raw Permalink Normal View History

2018-12-07 08:48:05 -06:00
{% 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 %}