aboutsummaryrefslogtreecommitdiffstats
path: root/97suifangqa/templates/sciblog/blog_detail_refrences.html
blob: 99ff7b21681b2a7bc9e62ef8948d2d522f7f480d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{% extends "sciblog/blog_detail.html" %}

{% block sectionname %}
<span style="font-weight:normal;">参考信息</span>
{% 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 %}
{{ ref.description }}<br>
<a href="{{ ref.link }}" target="_blank">阅读更多</a><br><br>
{% endfor %}
{% endblock %}