-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathfooter.tpl
34 lines (21 loc) · 1.31 KB
/
footer.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
<!-- Footer -->
<footer id="footer">
<div class="container">
<ul id="footer_menu_first" class="menu hidden-phone">
{{local}}
{{ set_current_issue }}
{{ list_sections }}
<li{{ if ($gimme->section->number == $gimme->default_section->number) }} class="current"{{ /if }}><a href="{{ url options="section" }}" title="{{'viewAllPosts'|translate}} {{ $gimme->section->name }}">{{ $gimme->section->name }}</a></li>
{{ /list_sections }}
</ul>
<ul id="footer_menu_second" class="menu">
{{ list_articles ignore_issue="true" ignore_section="true" order="bySectionOrder asc" constraints="issue is 1 section is 5 type is page"}}
<li><a href="{{ uri options="article" }}" title="{{ $gimme->article->name }}">{{ $gimme->article->name }}</a></li>
{{ /list_articles }}
<li><a href="{{ uri options="template archive.tpl" }}">{{'archives'|translate}}</a></li>
<li><p><small>{{'copyrightMessage'|translate}} <a target="_blank" href="http://newscoop.sourcefabric.org/">Newscoop</a>. {{'designed'|translate}} <a target="_blank" href="http://www.sourcefabric.org/">Sourcefabric</a></small></p></li>
{{/local}}
</ul>
</div>
</footer>
<!-- End Footer -->