atom-beautify/examples/nested-jsbeautifyrc/twig/expected/test.twig

18 lines
296 B
Twig
Raw Normal View History

<!DOCTYPE html>
<html>
2016-07-06 11:58:28 -06:00
<head>
<title>My Webpage</title>
</head>
2016-03-03 16:48:22 -07:00
2016-07-06 11:58:28 -06:00
<body>
<ul id="navigation">
{% for item in navigation %}
<li><a href="{{ item.href }}">{{ item.caption }}</a></li>
{% endfor %}
</ul>
2016-03-03 16:48:22 -07:00
2016-07-06 11:58:28 -06:00
<h1>My Webpage</h1> {{ a_variable }}
</body>
2016-03-03 16:48:22 -07:00
</html>