legacy-dotfiles/emacs.d/nxhtml/tests/in/pavel-071116.djhtml
Tom Willemsen 94d2fc1815 Django, org
* Added nxhtml, mostly for django support.

  * Changed some org settings.
2011-03-07 09:04:49 +01:00

31 lines
602 B
Text

<html>
{% extends "base.html" %}
<head>
<title>Muzikanti z lekce 4</title>
</head>
<body>
<table>
some text not within django block
{# some comment else #}
{% for muzikant in people %}
<tr>
<td>
{{ muzikant.name }}
<b>
{% comment %}
something else
{% if muzikant.nemamezeru %}*{% endif %} {% endcomment %}
</b>
</td>
<td>
<i {% if muzikant.ma_duraz %} style="font-weight: bold;"{% else %}{% endif %}>
{{ muzikant.genre|rjust|lower }}
</i>
</td>
</tr>
{% endfor %}
</table>
{% get_current_time "%Y-%M-%d %I:%M %p" as my_current_time %}
<p>The current time is {{ my_current_time }}.</p>
</body>
</html>