Created
March 12, 2009 16:12
-
-
Save idan/78142 to your computer and use it in GitHub Desktop.
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 PUBLIC "-//W3C//DTD HTML 4.01//EN" | |
"http://www.w3.org/TR/html4/strict.dtd"> | |
<html lang="en"> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> | |
<title>Sitewide Prefix {% block title %}{% endblock title %}</title> | |
<link rel="stylesheet" href="{{ MEDIA_URL }}css/reset.css" type="text/css" media="all" charset="utf-8"> | |
<link rel="stylesheet" href="{{ MEDIA_URL }}css/960.css" type="text/css" media="all" charset="utf-8"> | |
<link rel="stylesheet" href="{{ MEDIA_URL }}css/local.css" type="text/css" media="all" charset="utf-8"> | |
<!--<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script> --> | |
{% block extra_head %} | |
{% endblock extra_head %} | |
</head> | |
<body> | |
{% block body %} | |
<div id="head_wrap"> | |
<div class="container_12"> | |
{% block nav %} | |
{% endblock nav %} | |
</div> | |
</div> | |
<div id="feature_wrap"> | |
<div class="container_12"> | |
{% block feature %} | |
{% endblock feature %} | |
</div> | |
</div> | |
<div id="content_wrap"> | |
<div class="container_12"> | |
{% block content %} | |
{% endblock content %} | |
</div> | |
</div> | |
<div id="footer_wrap"> | |
<div class="container_12"> | |
{% block footer %} | |
{% endblock footer %} | |
</div> | |
</div> | |
{% endblock body %} | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment