aboutsummaryrefslogtreecommitdiffstats
path: root/templates/base.html
diff options
context:
space:
mode:
authorWeitian LI <liweitianux@gmail.com>2014-04-18 21:18:50 +0800
committerWeitian LI <liweitianux@gmail.com>2014-04-18 21:18:50 +0800
commita4d102896cd261ced64316fce45dd264a797a903 (patch)
treef8a06526f5817b7e3f7b7a08de9434766c6b1a9a /templates/base.html
parenta50364c081a5aa4857223474207c154cb82896ee (diff)
downloaddjango-skaschool-a4d102896cd261ced64316fce45dd264a797a903.tar.bz2
* updated settings.py, added settings_email.py
* created directories 'static' and 'templates' * added app 'account', 'notice' * added app 'demo'
Diffstat (limited to 'templates/base.html')
-rw-r--r--templates/base.html25
1 files changed, 25 insertions, 0 deletions
diff --git a/templates/base.html b/templates/base.html
new file mode 100644
index 0000000..df9c111
--- /dev/null
+++ b/templates/base.html
@@ -0,0 +1,25 @@
+{% extends 'bootstrap.html' %}
+
+{% load url from future %}
+
+{% load bootstrap3 %}
+
+{% block bootstrap3_content %}
+ <div class="container">
+ <h1>{% block title %}(no title){% endblock %}</h1>
+
+ <p>
+ <a href="{% url 'home' %}">home</a>
+ <a href="{% url 'form_default' %}">form</a>
+ <a href="{% url 'form_horizontal' %}">form_horizontal</a>
+ <a href="{% url 'form_inline' %}">form_inline</a>
+ <a href="{% url 'form_with_files' %}">form_with_files</a>
+ <a href="{% url 'pagination' %}">pagination</a>
+ </p>
+
+ {% bootstrap_messages %}
+
+ {% block content %}(no content){% endblock %}
+ </div>
+
+{% endblock %}