]> git.rkrishnan.org Git - .emacs.d.git/blob - emacs/nxhtml/tests/in/bug532759.djhtml
submodulized .emacs.d setup
[.emacs.d.git] / emacs / nxhtml / tests / in / bug532759.djhtml
1 {% if athlete_list %}
2   <p>Here are the athletes: {{ athlete_list }}.</p>
3 {% else %}
4   <p>No athletes are available.</p>
5   {% if coach_list %}
6     <p>Here are the coaches: {{ coach_list }}.</p>
7   {% endif %}
8 {% endif %}
9 {% block content %}
10
11  {% if morning %}
12    <p>Hello World!</p>
13    {% else %}
14      <p>Goodbye World!</p>
15    {% endif %}
16
17  {% endblock %}