diff options
author | Weitian LI <liweitianux@gmail.com> | 2014-04-23 01:44:31 +0800 |
---|---|---|
committer | Weitian LI <liweitianux@gmail.com> | 2014-04-23 01:44:31 +0800 |
commit | 05e9bd166404ba3306cbcec335c4ad88dd44ddc2 (patch) | |
tree | d89f3ace50fe4bfa68ed344f1f665e8604493652 /page/templates | |
parent | 062131495d2a319fcbb58bbdfd2b09626646dea9 (diff) | |
download | django-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.html | 20 |
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: #} |