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

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

import theme Simple version 2.5

  • use media queries to adapt layout for small screens
  • remove arbitrary limit on width: the picture will simply be partially hidden if too wide
  • update password.tpl
  • add MENUBAR on all pages
  • Spelling correction in README
  • update url
  • bugfix for the feature 'open external links in new window' for menubar links
File size: 583 bytes
Line 
1<div class="titrePage">
2  <ul class="categoryActions">
3    <li><a href="{$U_HOME}" title="{'Home'|@translate}">{'Home'|@translate}</a></li>
4  </ul>
5  <h2>{'Notification'|@translate}</h2>
6</div>
7<div id="content">
8{if isset($MENUBAR)}{$MENUBAR}{/if}
9  {if not empty($errors)}
10  <div class="errors">
11    <ul>
12      {foreach from=$errors item=error}
13      <li>{$error}</li>
14      {/foreach}
15    </ul>
16  </div>
17  {/if}
18  {if not empty($infos)}
19  <div class="infos">
20    <ul>
21      {foreach from=$infos item=info}
22      <li>{$info}</li>
23      {/foreach}
24    </ul>
25  </div>
26  {/if}
27</div>
Note: See TracBrowser for help on using the repository browser.