Last active
August 29, 2015 14:23
-
-
Save svivian/3dc47f0d701eb39fde1c to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{% 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