prettier-plugin-askama-temp.../test/cases/statement_set/input.html
2022-11-18 20:05:06 +01:00

14 lines
No EOL
351 B
HTML

<head>
{% for item in seq %}
<!-- meta for {{item}} -->
{% set key, value = call(item) %}
<meta name="{{key}}" content="{{value}}">
{% endfor %}
</head>
<body>
{% set navigation = [('index.html', 'Index'), ('about.html', 'About')] %}
{% set navigation %}
<li><a href="/">Index</a></li>
<li><a href="/downloads">Downloads</a></li>
{% endset %}
</body>