-
Notifications
You must be signed in to change notification settings - Fork 281
/
Copy pathannouncements.tpl
69 lines (59 loc) · 2.79 KB
/
announcements.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{if $announcementsFbRecommend}
<script>
(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) {
return;
}
js = d.createElement(s); js.id = id;
js.src = "//connect.facebook.net/{$LANG.locale}/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));
</script>
{/if}
{foreach from=$announcements item=announcement}
<div class="announcement-single">
<a href="{routePath('announcement-view', $announcement.id, $announcement.urlfriendlytitle)}" class="title">
{$announcement.title}
</a>
{if $announcement.text|strip_tags|strlen < 350}
<p>{$announcement.text}</p>
{else}
<p>{$announcement.summary}
<a href="{routePath('announcement-view', $announcement.id, $announcement.urlfriendlytitle)}" class="label label-warning">{$LANG.readmore} »</a>
</p>
{/if}
<div class="article-items">
<i class="fas fa-calendar-alt fa-fw"></i>
{$carbon->createFromTimestamp($announcement.timestamp)->format('jS M Y')}
{if $announcement.editLink}
<a href="{$announcement.editLink}" class="admin-inline-edit">
<i class="fas fa-pencil-alt fa-fw"></i>
{$LANG.edit}
</a>
{/if}
</div>
{if $announcementsFbRecommend}
<div class="fb-like hidden-sm hidden-xs" data-layout="standard" data-href="{fqdnRoutePath('announcement-view', $announcement.id, $announcement.urlfriendlytitle)}" data-send="true" data-width="450" data-show-faces="true" data-action="recommend"></div>
<div class="fb-like hidden-lg hidden-md" data-layout="button_count" data-href="{fqdnRoutePath('announcement-view', $announcement.id, $announcement.urlfriendlytitle)}" data-send="true" data-width="450" data-show-faces="true" data-action="recommend"></div>
{/if}
</div>
{foreachelse}
{include file="$template/includes/alert.tpl" type="info" msg="{$LANG.noannouncements}" textcenter=true}
{/foreach}
{if $prevpage || $nextpage}
<div class="col-xs-12 margin-bottom">
<form class="form-inline" role="form">
<div class="form-group">
<div class="input-group">
<span class="btn-group">
{foreach $pagination as $item}
<a href="{$item.link}" class="btn btn-default{if $item.active} active{/if}"{if $item.disabled} disabled="disabled"{/if}>{$item.text}</a>
{/foreach}
</span>
</div>
</div>
</form>
</div>
<div class="clearfix"></div>
{/if}