aboutsummaryrefslogtreecommitdiffstats
path: root/page/templates
diff options
context:
space:
mode:
authorWeitian LI <liweitianux@gmail.com>2014-04-23 01:44:31 +0800
committerWeitian LI <liweitianux@gmail.com>2014-04-23 01:44:31 +0800
commit05e9bd166404ba3306cbcec335c4ad88dd44ddc2 (patch)
treed89f3ace50fe4bfa68ed344f1f665e8604493652 /page/templates
parent062131495d2a319fcbb58bbdfd2b09626646dea9 (diff)
downloaddjango-skaschool-05e9bd166404ba3306cbcec335c4ad88dd44ddc2.tar.bz2
* added urls and template for 'introduction' in app page
* fixed page/views.py
Diffstat (limited to 'page/templates')
-rw-r--r--page/templates/page/introduction.html20
1 files changed, 20 insertions, 0 deletions
diff --git a/page/templates/page/introduction.html b/page/templates/page/introduction.html
new file mode 100644
index 0000000..9c89e0d
--- /dev/null
+++ b/page/templates/page/introduction.html
@@ -0,0 +1,20 @@
+{% extends 'base.html' %}
+{% load staticfiles %}
+{% load url from future %}
+{% load bootstrap3 %}
+
+{# introduction template #}
+
+{% block title %}
+介绍 | 2014 SKA Summer School
+{% endblock %}
+
+{% block content %}
+ <div class="container">
+ <h2>2014 SKA 暑期学校介绍</h2>
+ <br>
+ TODO
+ </div>
+{% endblock %}
+
+{# vim: set ts=8 sw=2 tw=0 fenc=utf-8 ft=htmldjango.html: #}