-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsection_standard_cont.tpl
45 lines (30 loc) · 1.19 KB
/
section_standard_cont.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
<div class="row" id="masonry_container">
{{ list_articles ignore_issue="true" ignore_section="false" order="byPublishDate desc" length="10" constraints="type not poll" }}
{{if $gimme->article->highlight}}
<div class="span6">
<article class="news_item">
{{ image rendition="front_big" }}
<a href="{{url options="article"}}" class="thumbnail">
<img src="{{ $image->src }}" alt="{{ $image->caption }} (photo: {{ $image->photographer }})" alt="" />
</a>
{{/image}}
{{ include file="_tpl/front_article_cont.tpl" }}
</article>
</div>
{{else}}
<div class="span3">
<article class="news_item">
{{ image rendition="front_small" }}
<a href="{{url options="article"}}" class="thumbnail">
<img src="{{ $image->src }}" alt="{{ $image->caption }} (photo: {{ $image->photographer }})" alt="" />
</a>
{{/image}}
{{ include file="_tpl/front_article_cont.tpl" }}
</article>
</div>
{{/if}}
{{if $gimme->current_list->at_end}}
</div>
{{ include file="_tpl/pagination.tpl" }}
{{/if}}
{{/list_articles}}