aboutsummaryrefslogtreecommitdiffstats
path: root/themes/default/template/nbm.tpl
blob: 943f9cdc7a282fe9c52586a7a9232bc0c8984646 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{if isset($MENUBAR)}{$MENUBAR}{/if}
<div id="content" class="content">
	<div class="titrePage">
		<ul class="categoryActions">
      <li><a href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button">
        <span class="pwg-icon pwg-icon-home">&nbsp;</span><span class="pwg-button-text">{'Home'|@translate}</span>
      </a></li>
    </ul>
		<h2>{'Notification'|@translate}</h2>
	</div>

  {if not empty($errors)}
  <div class="errors">
    <ul>
      {foreach from=$errors item=error}
      <li>{$error}</li>
      {/foreach}
    </ul>
  </div>
  {/if}

  {if not empty($infos)}
  <div class="infos">
    <ul>
      {foreach from=$infos item=info}
      <li>{$info}</li>
      {/foreach}
    </ul>
  </div>
  {/if}

</div>