source: trunk/template/default/nbm.tpl @ 5095

Last change on this file since 5095 was 5095, checked in by plg, 14 years ago

feature 1494: move all *.tpl files from template/yoga to the new
template/default (from which yoga derives)

  • Property svn:eol-style set to LF
File size: 643 bytes
Line 
1
2<div id="content" class="content">
3  <div class="titrePage">
4    <ul class="categoryActions">
5      <li><a href="{$U_HOME}" title="{'Home'|@translate}"><img src="{$themeconf.icon_dir}/Home.png" class="button" alt="{'Home'|@translate}"></a></li>
6    </ul>
7    <h2>{'Notification'|@translate}</h2>
8  </div>
9
10  {if not empty($errors)}
11  <div class="errors">
12    <ul>
13      {foreach from=$errors item=error}
14      <li>{$error}</li>
15      {/foreach}
16    </ul>
17  </div>
18  {/if}
19
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
30</div>
Note: See TracBrowser for help on using the repository browser.