-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy patharticle.tpl
executable file
·47 lines (24 loc) · 1.05 KB
/
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
{{ config_load file="{{ $gimme->language->english_name }}.conf" }}
{{ include file="_tpl/_html-head.tpl" }}
<body id="articlepage" class="{{ if $gimme->article->type_name == "debate" }} debatte-single{{ /if }}">
<div id="container">
{{ include file="_tpl/header.tpl" }}
<div class="row clearfix" role="main">
<div id="maincol" class="eightcol clearfix">
{{ if $gimme->article->type_name == "debate" }}
{{ include file="_tpl/article-debate.tpl" }}
{{ else }}
{{ include file="_tpl/article-cont.tpl" }}
{{ /if }}
{{ if $gimme->article->type_name !== "page" }}
{{ include file="_tpl/article-rating.tpl" }}
{{ include file="_tpl/article-comments.tpl" }}
{{ /if }}
</div><!-- /#maincol -->
<aside class="fourcol last">
{{ include file="_tpl/article-aside.tpl" }}
</aside>
</div>
{{ include file="_tpl/footer.tpl" }}
</div> <!-- /#container -->
{{ include file="_tpl/_html-foot.tpl" }}