-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy patharchive.tpl
52 lines (17 loc) · 930 Bytes
/
archive.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
{{extends file="layout.tpl"}}
{{block content}}
<div class="bloger_news_items">
<div>
<ul>
{{ list_issues order="bynumber desc" constraints="number greater 1" }}
<li class="news_item">
<div class="content content_text">
<h6 class="info">{{ $gimme->issue->publish_date|camp_date_format:"%d %M %Y" }}</h6>
<h3 class="title"><a href="{{ url options="template issue.tpl" }}">{{ $gimme->issue->name }}</a></h3>
</div>
</li>
{{ /list_issues }}
</ul>
</div>
</div>
{{/block}}