Skip to content

Instantly share code, notes, and snippets.

@svivian
Last active August 29, 2015 14:23
Show Gist options
  • Save svivian/3dc47f0d701eb39fde1c to your computer and use it in GitHub Desktop.
Save svivian/3dc47f0d701eb39fde1c to your computer and use it in GitHub Desktop.
<!DOCTYPE html>
<html>
<head>
<title>{{ title }}</title>
</head>
<body>
<h1>{{ title }}</h1>
{% block header %}
<header>Website header</header>
{% endblock %}
<p>Some content here.</p>
{% block footer %}
<footer>Website footer</footer>
{% endblock %}
</body>
</html>
{% extends "master.twig" %}
{% block header %}
{{ parent() }}
<p>Some extra content appended!</p>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment