Created
June 5, 2012 21:35
-
-
Save petrushev/2878200 to your computer and use it in GitHub Desktop.
Basic jinja2 template
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 lang="en"> | |
<head> | |
<title>{% block title %}{% endblock %}</title> | |
{% block styles %} | |
<link rel="icon" href="{{cdn}}/img/icon/favicon.ico" type="image/x-icon" /> | |
<link rel="Shortcut Icon" href="{{cdn}}/img/icon/favicon.ico" /> | |
<link href="{{cdn}}/css/blueprint.css" media="all" rel="stylesheet" type="text/css" /> | |
<link href="{{cdn}}/css/default.css" media="all" rel="stylesheet" type="text/css" /> | |
{% endblock %} | |
{% block scripts %} | |
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js"></script> | |
<script type="text/javascript" src="{{cdn}}/js/default.js"></script> | |
{% endblock %} | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> | |
<meta name="description" content="{% block meta_desc %}{% endblock %}" /> | |
<meta name="keywords" content="{% block meta_keywords %}{% endblock %}" /> | |
{% block head_rest %}{% endblock %} | |
</head> | |
<body> | |
<div class="container "> | |
<div class="span-24 last"> | |
{% block body %} | |
<div id="main_header" class="span-24 last" style="padding-top:10px;"> | |
{% block header %}{% endblock %} | |
</div> | |
<div id="main_body" class="span-24 last" > | |
{% block main_body %}{% endblock %} | |
</div> | |
<div id="main_footer" class="span-24 last" > | |
{% block footer %}{% endblock %} | |
</div> | |
{% endblock %} | |
</div> | |
</div> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment