-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update template to v2 pre-release 4
- Loading branch information
Showing
17 changed files
with
115 additions
and
45 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
upload/custom/templates/Bootstrap3/forum/view_forum_confirm_redirect.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{include file='navbar.tpl'} | ||
|
||
<div class="container"> | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
{$CONFIRM_REDIRECT} | ||
<hr /> | ||
<div class="btn-group btn-group-lg" role="group" aria-label="..."> | ||
<a href="{$FORUM_INDEX}" class="btn btn-default">{$NO}</a> | ||
<a href="{$REDIRECT_URL}" target="_blank" rel="noopener nofollow" class="btn btn-primary">{$YES}</a> | ||
</div> | ||
</div> | ||
</div> | ||
</div> | ||
|
||
{include file='footer.tpl'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -73,7 +73,6 @@ | |
{if count($WIDGETS)} | ||
{foreach from=$WIDGETS item=widget} | ||
{$widget} | ||
<br /><br /> | ||
{/foreach} | ||
{/if} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
{include file='navbar.tpl'} | ||
|
||
<div class="container"> | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
<h2 style="margin-top:5px;">{$PRIVACY_POLICY}</h2> | ||
|
||
<p>{$POLICY}</p> | ||
|
||
</div> | ||
</div> | ||
</div> | ||
|
||
{include file='footer.tpl'} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
13 changes: 13 additions & 0 deletions
13
upload/custom/templates/Bootstrap3/widgets/online_staff.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
<h2 style="margin-top:5px;">{$ONLINE_STAFF}</h2> | ||
{if isset($ONLINE_STAFF_LIST)} | ||
{foreach from=$ONLINE_STAFF_LIST name=online_staff_arr item=user} | ||
<a style="{$user.style}" href="{$user.profile}"><img src="{$user.avatar}" alt="{$user.nickname}" class="img-rounded" style="max-height:20px;max-width:20px;"> {$user.username}</a> | ||
{if not $smarty.foreach.online_staff_arr.last}, {/if} | ||
{/foreach} | ||
{else} | ||
{$NO_STAFF_ONLINE} | ||
{/if} | ||
</div> | ||
</div> |
13 changes: 13 additions & 0 deletions
13
upload/custom/templates/Bootstrap3/widgets/online_users.tpl
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
<div class="panel panel-default"> | ||
<div class="panel-body"> | ||
<h2 style="margin-top:5px;">{$ONLINE_USERS}</h2> | ||
{if isset($ONLINE_USERS_LIST)} | ||
{foreach from=$ONLINE_USERS_LIST name=online_users_arr item=user} | ||
<a style="{$user.style}" href="{$user.profile}"><img src="{$user.avatar}" alt="{$user.nickname}" class="img-rounded" style="max-height:20px;max-width:20px;"> {$user.username}</a> | ||
{if not $smarty.foreach.online_users_arr.last}, {/if} | ||
{/foreach} | ||
{else} | ||
{$NO_USERS_ONLINE} | ||
{/if} | ||
</div> | ||
</div> |