source: extensions/stripped/template/nbm.tpl @ 12960

Last change on this file since 12960 was 12960, checked in by Zaphod, 12 years ago

version 2.1.0

File size: 941 bytes
Line 
1{php}
2        global $conf;
3        $this->assign('LEVEL_SEPARATOR', $conf[ 'level_separator' ]);
4{/php}
5<div class="titrePage">
6        <div class="browsePath">
7                <h2>
8                        {if isset($MENUBAR)}
9                                <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
10                        {/if}
11                        <a href="{$U_HOME}">{'Home'|@translate}</a>
12                        {$LEVEL_SEPARATOR}{'Notification'|@translate}
13                </h2>
14        </div>
15</div>
16<div id="content">
17        {if isset($MENUBAR)}{$MENUBAR}{/if}
18        <div id="content_cell">
19                <div class="content_block">
20                        {if not empty($errors)}
21                                <div class="errors">
22                                        <ul>
23                                                {foreach from=$errors item=error}
24                                                        <li>{$error}</li>
25                                                {/foreach}
26                                        </ul>
27                                </div>
28                        {/if}
29                        {if not empty($infos)}
30                                <div class="infos">
31                                        <ul>
32                                                {foreach from=$infos item=info}
33                                                        <li>{$info}</li>
34                                                {/foreach}
35                                        </ul>
36                                </div>
37                        {/if}
38                </div>
39        </div>
40</div>
Note: See TracBrowser for help on using the repository browser.