Skip to content

Instantly share code, notes, and snippets.

@bkozora
Created January 5, 2015 15:34
Show Gist options
  • Save bkozora/65b7e2056b34487e8492 to your computer and use it in GitHub Desktop.
Save bkozora/65b7e2056b34487e8492 to your computer and use it in GitHub Desktop.
Twig Syntax Example
<!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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment