From a4d102896cd261ced64316fce45dd264a797a903 Mon Sep 17 00:00:00 2001 From: Weitian LI Date: Fri, 18 Apr 2014 21:18:50 +0800 Subject: * updated settings.py, added settings_email.py * created directories 'static' and 'templates' * added app 'account', 'notice' * added app 'demo' --- templates/base.html | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 templates/base.html (limited to 'templates/base.html') 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 %} +
+

{% block title %}(no title){% endblock %}

+ +

+ home + form + form_horizontal + form_inline + form_with_files + pagination +

+ + {% bootstrap_messages %} + + {% block content %}(no content){% endblock %} +
+ +{% endblock %} -- cgit v1.2.2