Skip to content

Commit ad1a7f6

Browse files
committed
- added new bt4 templates
1 parent c6f13cf commit ad1a7f6

6 files changed

Lines changed: 146 additions & 95 deletions

File tree

docs/changelog.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
- added preferences for breadcrumb display (alain01/goffy)
55
- replaced index.html by index.php (alain01/goffy)
66
- permanent display of filter with enabled/disabled buttons (alain01/goffy)
7+
- added new bt4 templates (alain01/goffy)
78

89
===================================================================
910
2021/03/31 Version 1.03 Final
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<ol class='breadcrumb'>
2+
<li class='breadcrumb-item'><a href='<{xoAppUrl index.php}>' title='home'><span class="fa fa-home"></span></a></li>
3+
<{foreach item=itm from=$xoBreadcrumbs name=bcloop}>
4+
<li class='breadcrumb-item'>
5+
<{if $itm.link|default:''}>
6+
<a href='<{$itm.link}>' title='<{$itm.title}>'><{$itm.title}></a>
7+
<{else}>
8+
<{$itm.title}>
9+
<{/if}>
10+
</li>
11+
<{/foreach}>
12+
</ol>
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<div class=""><{$copyright}></div>
2+
3+
<{if $pagenav|default:'' != ''}>
4+
<div class='text-right'><{$pagenav}></div>
5+
<{/if}>
6+
<br>
7+
<{if $xoops_isadmin|default:'' != ''}>
8+
<hr />
9+
<p class="text-center"><a class="btn btn-danger" href="<{$admin}>"><span class="fa fa-wrench fa-lg"></span> <{$smarty.const._MA_WGGITHUB_ADMIN}></a></p>
10+
<{/if}>
11+
12+
<{if $comment_mode|default:''}>
13+
<div class='pad2 marg2'>
14+
<{if $comment_mode == "flat"}>
15+
<{include file='db:system_comments_flat.tpl' }>
16+
<{elseif $comment_mode == "thread"}>
17+
<{include file='db:system_comments_thread.tpl' }>
18+
<{elseif $comment_mode == "nest"}>
19+
<{include file='db:system_comments_nest.tpl' }>
20+
<{/if}>
21+
</div>
22+
<{/if}>
23+
<{include file='db:system_notification_select.tpl' }>
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
<{if $showBreadcrumb|default:false}>
2+
<{include file='db:wggithub_breadcrumbs.tpl' }>
3+
<{/if}>
4+
5+
<{if $ads|default:'' != ''}>
6+
<div class='text-center'><{$ads}></div>
7+
<{/if}>

0 commit comments

Comments
 (0)