Files
Basalt2/node_modules/shiki/samples/twig.sample
Robert Jelic 31787b0e9b Fix
2025-02-16 18:04:24 +01:00

19 lines
396 B
Plaintext

<!DOCTYPE html>
<html>
<head>
<title>My Webpage</title>
</head>
<body>
<ul id="navigation">
{% for item in navigation %}
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
{% endfor %}
</ul>
<h1>My Webpage</h1>
{{ a_variable }}
</body>
</html>
{# From https://twig.symfony.com/doc/3.x/templates.html #}