Created
July 1, 2012 23:26
-
-
Save erickgnavar/3030002 to your computer and use it in GitHub Desktop.
Django base template
This file contains 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 lang="en-US"> | |
<head> | |
<meta charset="utf-8"> | |
<title>{% block title %}{% endblock %}</title> | |
{% block extrastyle %}{% endblock %} | |
</head> | |
<body> | |
<header id="page-header"> | |
{% block header %}{% endblock %} | |
</header> | |
<section id="page-content"> | |
{% block content %}{% endblock %} | |
</section> | |
<footer id="page-footer"> | |
</footer> | |
{% block bottomscript %}{% endblock %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment