Templates
Twig Templating Language
<!DOCTYPE html>
<html>
<head>
<title>{{ blog.title|raw }}</title>
</head>
<body>
<h1>{{ post.title }}</h1>
{% if blog.user %}
Hello {{ blog.user.nicename }}!
{% endif %}
{# ... #}
</body>
</html>gCreating Templates
Last updated