source: extensions/simple_themes/simple/template/nbm.tpl @ 13556

Last change on this file since 13556 was 13556, checked in by plg, 12 years ago

import theme Simple version 2.5.1

  • refactor code for #titrePage and add the link to switch the menu
  • fixes for comments page
  • fixes for pages where the $MENUBAR is present
File size: 469 bytes
Line 
1{assign var='pagetitle' value='Notification'}
2{include file='pagetitle.tpl'}
3
4<div id="content">
5  {if isset($MENUBAR)}{$MENUBAR}{/if}
6  {if not empty($errors)}
7  <div class="errors">
8    <ul>
9      {foreach from=$errors item=error}
10      <li>{$error}</li>
11      {/foreach}
12    </ul>
13  </div>
14  {/if}
15  {if not empty($infos)}
16  <div class="infos">
17    <ul>
18      {foreach from=$infos item=info}
19      <li>{$info}</li>
20      {/foreach}
21    </ul>
22  </div>
23  {/if}
24</div>
Note: See TracBrowser for help on using the repository browser.