diff options
author | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
---|---|---|
committer | Alvin Li <liweitianux@gmail.com> | 2013-08-13 14:13:24 +0800 |
commit | 9636d4a6767f49384d5c386bc3f1142c88b90613 (patch) | |
tree | 3a70f6d9e4be1791d36c87cc7cbfd1d5aa2b39dd /97suifangqa/templates/sciblog/blog_detail_refrences.html | |
parent | 9383d9a8a5988d071766c3d08a5c946e9c5b02ae (diff) | |
download | 97dev-9636d4a6767f49384d5c386bc3f1142c88b90613.tar.bz2 |
cloned from 'bitbucket', 2013/08/13
Diffstat (limited to '97suifangqa/templates/sciblog/blog_detail_refrences.html')
-rw-r--r-- | 97suifangqa/templates/sciblog/blog_detail_refrences.html | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/97suifangqa/templates/sciblog/blog_detail_refrences.html b/97suifangqa/templates/sciblog/blog_detail_refrences.html new file mode 100644 index 0000000..a60935d --- /dev/null +++ b/97suifangqa/templates/sciblog/blog_detail_refrences.html @@ -0,0 +1,25 @@ +{% extends "sciblog/blog_detail.html" %} + +{% block sectionname %} +参考信息 +{% endblock %} + +{% block navigation %} +<nav role="navigation" class="section-nav"> + <ul class="links inline"> + <li><a href="#detect_methods" class="active">检测方法</a></li> + <li><a href="#refrences">参考文献</a></li> + </ul> +</nav> +{% endblock %} + +{% block block_pieces %} +<a href="" id="detect_methods"></a> +<h3>检测方法罗列</h3> +<p>{{ blog.detectionAssay }}</p> +<a href="" id="refrences"></a> +<h3>参考文献</h3> +{% for ref in blog.references.all %} +<a href="{{ ref.link }}">{{ ref.description }}</a> +{% endfor %} +{% endblock %} |