Files
tree-sitter-django/test/highlights/example.html
T
2026-08-11 17:39:34 -05:00

28 lines
463 B
HTML

<body>
{# hello this is an example file #}
<header>
<h1>{{ page.title|title }}</h1>
<nav>
{% if page.links|length > 0 %}
<ul>
{% for label, link in page.links %}
<li>
{% url 'nav-pages' link as href %}
<a href="{{href}}">{{label}}</a>
</li>
{% endfor %}
</ul>
{% endif %}
</nav>
</header>
{% block content %}
{% endblock %}
<footer>
{% for foot in page.footer %}
{% endfor %}
</footer>
</body>