Skip to content

Instantly share code, notes, and snippets.

@rdegges
Created February 18, 2010 19:50
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdegges/307977 to your computer and use it in GitHub Desktop.
Save rdegges/307977 to your computer and use it in GitHub Desktop.
{% 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>&copy; 2010, Django Consultants</span>
</footer>
{% endblock %}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment