forked from WHMCS/templates-six
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathannouncements.tpl
75 lines (64 loc) · 3.17 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
70
71
72
73
74
75
{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="fa fa-calendar fa-fw"></i>
{$carbon->createFromTimestamp($announcement.timestamp)->format('jS M Y')}
{if $announcement.editLink}
<a href="{$announcement.editLink}" class="admin-inline-edit">
<i class="fa fa-pencil 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-md-6 col-md-offset-3 col-sm-6 col-sm-offset-3">
<form class="form-inline" role="form">
<div class="form-group">
<div class="input-group">
{if $prevpage}
<span class="input-group-btn">
<a href="{routePath('announcement-index-paged', $prevpage, $view)}" class="btn btn-default">« {$LANG.previouspage}</a>
</span>
{/if}
<input class="form-control" style="text-align: center;" value="{$LANG.page} {$pagenumber}" disabled="disabled">
{if $nextpage}
<span class="input-group-btn">
<a href="{routePath('announcement-index-paged', $nextpage, $view)}" class="btn btn-default">{$LANG.nextpage} »</a>
</span>
{/if}
</div>
</div>
</form>
</div>
{/if}