Skip to content

Instantly share code, notes, and snippets.

@crooksey
Created July 19, 2011 14:23
Show Gist options
  • Save crooksey/1092519 to your computer and use it in GitHub Desktop.
Save crooksey/1092519 to your computer and use it in GitHub Desktop.
blog_base.html
{% load cms_tags %}
{% load cache menu_tags %}
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<div id="page_container">
<header>
<title> {% page_attribute "page_title" %}</title>
<div id="header_container">
<div id="logo_container">
<p> aaaaaaaaaaaaaaaaaaaaaa </p>
</div> <!-- end logo container -->
<div id="sm_container">
</div> <!-- end social media container -->
<div id="menu_container">
<ul>
{% show_menu 0 100 100 100 %}
</ul>
</div> <!-- end menu container -->
</div> <!-- end header container -->
</header>
<body>
<div id ="cms_container">
{% block body %}
{% endblock %}
</body>
</div> <!-- end cms container -->
</body>
<footer>
<div id ="footer_container">
</div> <!-- end footer container -->
</footer>
</div> <!-- end page container -->
<html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment