source: extensions/Slim/template/nbm.tpl @ 19553

Last change on this file since 19553 was 18811, checked in by Miklfe, 12 years ago
File size: 792 bytes
Line 
1{$MENUBAR}
2<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
3<div id="infoBlock">
4        <div class="titrePage">
5                <ul class="categoryActions">
6      <li><a href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button">
7        <span class="pwg-icon pwg-icon-home">&nbsp;</span><span class="pwg-button-text">{'Home'|@translate}</span>
8      </a></li>
9    </ul>
10                <h2>{'Notification'|@translate}</h2>
11        </div>
12</div>
13
14  {if not empty($errors)}
15  <div class="errors">
16    <ul>
17      {foreach from=$errors item=error}
18      <li>{$error}</li>
19      {/foreach}
20    </ul>
21  </div>
22  {/if}
23
24  {if not empty($infos)}
25  <div class="infos">
26    <ul>
27      {foreach from=$infos item=info}
28      <li>{$info}</li>
29      {/foreach}
30    </ul>
31  </div>
32  {/if}
33
34</div>
Note: See TracBrowser for help on using the repository browser.