Created
February 18, 2010 19:50
-
-
Save rdegges/307977 to your computer and use it in GitHub Desktop.
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.html" %} | |
{% comment %} | |
This is the main template for all portal pages. | |
{% endcomment %} | |
{% block head %} | |
<title>Django Consultants | {% block title %}{% endblock %}</title> | |
{% endblock %} | |
{% block body %} | |
<header> | |
<h1>Django Consultants | Web Portal</h1> | |
</header> | |
<section> | |
<ul> | |
<li><a href="/">home</a></li> | |
<li><a href="/logout/">logout</a></li> | |
</ul> | |
</section> | |
{% block content %}{% endblock %} | |
<footer> | |
<span>© 2010, Django Consultants</span> | |
</footer> | |
{% endblock %} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment