source: branches/2.1/themes/default/template/about.tpl @ 8373

Last change on this file since 8373 was 8373, checked in by rub, 13 years ago

Add a new way to add informations on about page. (Loop on template)
Add element on ignore list

  • Property svn:eol-style set to LF
File size: 590 bytes
Line 
1<div id="content" class="content">
2  <div class="titrePage">
3    <ul class="categoryActions">
4      <li>
5        <a href="{$U_HOME}" title="{'return to homepage'|@translate}">
6          <img src="{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}">
7        </a>
8      </li>
9    </ul>
10    <h2>{'About'|@translate}</h2>
11  </div>
12  <div id="piwigoAbout">
13  {$ABOUT_MESSAGE}
14  {if isset($THEME_ABOUT) }
15  <ul>
16   <li>{$THEME_ABOUT}</li>
17  </ul>
18  {/if}
19  {if not empty($about_msgs)}
20    {foreach from=$about_msgs item=elt}
21    {$elt}
22    {/foreach}
23  {/if}
24  </div>
25</div>
Note: See TracBrowser for help on using the repository browser.