Created
November 21, 2013 06:54
-
-
Save vsyrovat/7577097 to your computer and use it in GitHub Desktop.
Template Principles pt. 3
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>{$title}</title> | |
</head> | |
<body> | |
{% block body %}{% endblock %} | |
<div class="footer"> | |
<p class="copyrights">© Ololo team</p> | |
<p class="contacts">Call us: +1 123 456 789</p> | |
</div> | |
</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 'base.tpl' %} | |
{% block body %} | |
<p>Some intro text for index page</p> | |
<div class="main">{$body}</div> | |
{% 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
{% extends 'base.tpl' %} | |
{% block body %} | |
<div class="left">{$left_block}</div> | |
<div class="right">{$body}</div> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment