Files
Basalt2/node_modules/shiki/samples/twig.sample
Robert Jelic b0a4a6da9c Vitepress
2025-02-10 06:53:23 +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 #}