~django-foundations-dev/ubuntu-django-foundations/trunk

« back to all changes in this revision

Viewing changes to src/common/templates/base.html

  • Committer: Michael Hall
  • Date: 2011-02-14 19:47:37 UTC
  • Revision ID: mhall119@gmail.com-20110214194737-ttokca7onid5f6v1
Added base templates

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
{% extends "ubuntu_website_base.html" %}
 
2
 
 
3
{% block title %}Ubuntu Django Foundations{% endblock %}
 
4
 
 
5
{% block logo_text %}Django Foundations{% endblock %}
 
6
 
 
7
{% block extrahead %}
 
8
{% endblock %}
 
9
 
 
10
{% block main_nav_links %}
 
11
{% endblock %}
 
12
 
 
13
{% block sub_nav_links %}
 
14
{% endblock %}
 
15
 
 
16
{% block content %}
 
17
{% endblock %}
 
18
 
 
19
{% block general %}
 
20
{% endblock %}
 
21
 
 
22
{% block footer_list_1 %}
 
23
{% endblock %}
 
24
 
 
25
{% block footer_list_2 %}
 
26
{% endblock %}
 
27
 
 
28
{% block footer_list_3 %}
 
29
{% endblock %}
 
30
 
 
31
{% block footer_note %}
 
32
<p>Powered by: Ubuntu Django Foundations
 
33
<a href="https://launchpad.net/ubuntu-django-foundations" target="_blank">https://launchpad.net/ubuntu-django-foundations</a>
 
34
</p>
 
35
{% endblock %}