Created
May 13, 2012 11:27
-
-
Save gabrielnau/2687937 to your computer and use it in GitHub Desktop.
Locomotive CMS book / Templating / Templating logic / Basics
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 parent %} | |
{% block content %} | |
the content of this page | |
{% endblock %} |
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
<html> | |
<head> | |
<title>My index page</title> | |
</head> | |
<body> | |
<header> | |
layout header | |
</header> | |
<div id="content"> | |
{% block content %} | |
the content of the index page | |
{% endblock %} | |
</div> | |
<footer> | |
layout footer | |
</footer> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment