-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathissue.tpl
46 lines (32 loc) · 1.58 KB
/
issue.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
{{ config_load file="strings-{{ $gimme->language->code }}.tpl" }}
{{ include file="_tpl/_html-head.tpl" }}
<div id="wrapper">
{{ include file="_tpl/header.tpl" }}
<div id="content">
<div class="title page-title">
<h2>{{ $gimme->issue->name }}</h2>
</div>
<section class="grid-6">
{{ list_sections }}
{{ list_articles }}
{{ if $gimme->current_list->at_beginning }}
<article>
<h3>{{ $gimme->section->name }}</h3>
{{ /if }}
<div class="article">
{{ if $gimme->current_list->at_beginning }}{{ include file="_tpl/img/img_square.tpl" }}{{ /if }}
<h4><a href="{{ url options="article" }}">{{ $gimme->article->name }}</a> <em>/ <a href="{{ url options="section" }}">{{ $gimme->section->name }}</a></em></h4>
<span class="time">{{ include file="_tpl/relative_date.tpl" date=$gimme->article->publish_date }}{{ if ! $gimme->article->content_accessible }} / <a href="{{ url options="article" }}">{{ #premium# }}</a>{{ /if }}</span>
</div>
{{ if $gimme->current_list->at_end }}
</article>
{{ /if }}
{{ /list_articles }}
{{ /list_sections }}
</section><!-- / 6 articles grid -->
</div><!-- / Content -->
{{ include file="_tpl/footer.tpl" }}
</div><!-- / Wrapper -->
{{ include file="_tpl/_html-foot.tpl" }}
</body>
</html>