-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patharticle.tpl
53 lines (26 loc) · 945 Bytes
/
article.tpl
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{{ if $gimme->article->type_name=="page"}}
{{ include file="page.tpl" }}
{{ elseif $gimme->article->type_name == "debate" }}
{{ include file="article-debate.tpl" }}
{{else}}
{{ include file="_tpl/_html-head.tpl" }}
<div id="blueimp_fullscreen" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<ol class="indicator"></ol>
<div class="caption"></div>
</div>
{{ include file="_tpl/header.tpl" }}
<div id="page" class="container">
<!-- Content -->
<section id="content">
{{ include file="_tpl/article-cont.tpl" }}
{{ render file="_tpl/box-most_tabs.tpl" issue=off section=off cache=600 }}
</section>
<!-- End Content -->
</div>
{{ include file="_tpl/footer.tpl" }}
{{ include file="_tpl/_html-foot.tpl" }}
{{/if}}