source: extensions/stripped/template/about.tpl @ 12960

Last change on this file since 12960 was 12960, checked in by Zaphod, 12 years ago

version 2.1.0

File size: 849 bytes
Line 
1{php}
2        global $conf;
3        $this->assign('LEVEL_SEPARATOR', $conf[ 'level_separator' ]);
4{/php}
5<div class="titrePage">
6        <div class="browsePath">
7                <h2>
8                        {if isset($MENUBAR)}
9                                <span id="menuswitcher" title="{'Show/hide menu'|@translate}">{'Menu'|@translate}</span><span class="arrow"> »</span>
10                        {/if}
11                        <a href="{$U_HOME}">{'Home'|@translate}</a>
12                        {$LEVEL_SEPARATOR}{'About'|@translate}
13                </h2>
14        </div>
15</div>
16<div id="content">
17        {if isset($MENUBAR)}{$MENUBAR}{/if}
18        <div id="content_cell">
19                <div id="piwigoAbout" class="content_block">
20                        {$ABOUT_MESSAGE}
21                        {if isset($THEME_ABOUT) }
22                                <ul>
23                                        <li>{$THEME_ABOUT}</li>
24                                </ul>
25                        {/if}
26                        {if not empty($about_msgs)}
27                                {foreach from=$about_msgs item=elt}
28                                        {$elt}
29                                {/foreach}
30                        {/if}
31                </div>
32        </div>
33        <div style="clear: both;"></div>
34</div>
Note: See TracBrowser for help on using the repository browser.