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

Last change on this file since 9134 was 9134, checked in by Zaphod, 13 years ago

[extension] stripped - version 1.2.0

File size: 677 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><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@translate}">{'Home'|@translate}</a>{$LEVEL_SEPARATOR}{'Notification'|@translate}</h2>
8        </div>
9</div>
10<div id="content">
11        {if not empty($errors)}
12                <div class="errors">
13                        <ul>
14                                {foreach from=$errors item=error}
15                                        <li>{$error}</li>
16                                {/foreach}
17                        </ul>
18                </div>
19        {/if}
20        {if not empty($infos)}
21                <div class="infos">
22                        <ul>
23                                {foreach from=$infos item=info}
24                                        <li>{$info}</li>
25                                {/foreach}
26                        </ul>
27                </div>
28        {/if}
29</div>
Note: See TracBrowser for help on using the repository browser.