This repository has been archived by the owner on Feb 23, 2020. It is now read-only.
forked from WHMCS/templates-six
-
Notifications
You must be signed in to change notification settings - Fork 2
/
announcements.tpl
65 lines (55 loc) · 3.19 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
{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">
<h2>
<span class="label label-default">
{if $jdate}{$announcement.date}{else}{"M jS"|date:$announcement.timestamp}{/if}
</span>
<a href="{if $seofriendlyurls}{$WEB_ROOT}/announcements/{$announcement.id}/{$announcement.urlfriendlytitle}.html{else}{$smarty.server.PHP_SELF}?id={$announcement.id}{/if}">{$announcement.title}</a>
</h2>
<blockquote>
<p>{if $announcement.text|strip_tags|strlen < 350}{$announcement.text}{else}{$announcement.summary}
<a href="{if $seofriendlyurls}{$WEB_ROOT}/announcements/{$announcement.id}/{$announcement.urlfriendlytitle}.html{else}{$smarty.server.PHP_SELF}?id={$announcement.id}{/if}" class="label label-warning">{$LANG.readmore} »</a>
{/if}</p>
</blockquote>
{if $announcementsFbRecommend}
<div class="fb-like hidden-sm hidden-xs" data-layout="standard" data-href="{$systemurl}{if $seofriendlyurls}announcements/{$announcement.id}/{$announcement.urlfriendlytitle}.html{else}announcements.php?id={$announcement.id}{/if}" 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="{$systemurl}{if $seofriendlyurls}announcements/{$announcement.id}/{$announcement.urlfriendlytitle}.html{else}announcements.php?id={$announcement.id}{/if}" 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="announcements.php?page={$prevpage}{if $view}&view={$view}{/if}" 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="announcements.php?page={$nextpage}{if $view}&view={$view}{/if}" class="btn btn-default">{$LANG.nextpage} »</a>
</span>
{/if}
</div>
</div>
</form>
</div>
{/if}