source: trunk/themes/default/template/nbm.tpl @ 5559

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

Fix missing keys: some keys have been removed by mistake during the massive
key conversion.

Remove some language keys that are really obsolete. I've updated the script
to convert language files to 2.1, I will apply "obsolete keys removal" process
in a 2nd step on other languages.

  • Property svn:eol-style set to LF
File size: 674 bytes
Line 
1
2<div id="content" class="content">
3  <div class="titrePage">
4    <ul class="categoryActions">
5      <li><a href="{$U_HOME}" title="{'Go through the gallery as a visitor'|@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.