Skip to content

Instantly share code, notes, and snippets.

@lstrojny
Created May 27, 2012 15:22
Show Gist options
  • Save lstrojny/2814718 to your computer and use it in GitHub Desktop.
Save lstrojny/2814718 to your computer and use it in GitHub Desktop.
{# layout.html.twig #}
<html>
<head>
{% block head %}{% endblock head %}
</head>
<body>
{% block body %}{% endblock body %}
</body>
</html>
{# page.html.twig #}
{% extend "layout.html.twig" %}
{% block body %}
{{ change_something_in_head_block_of_layout() }}
{% endblock body %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment