source: extensions/simple_themes/simple/template/index.tpl @ 13546

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

import theme Simple, version 2.0

  • adaptation of the theme for Piwigo 2.1
File size: 1.9 KB
Line 
1{if !empty($PLUGIN_INDEX_CONTENT_BEFORE)}{$PLUGIN_INDEX_CONTENT_BEFORE}{/if}
2<div class="titrePage">
3  <span id="menuswitcher" title="Afficher/cacher le menu">Menu</span> »
4  {if isset($U_EDIT) or isset($U_SLIDESHOW) or !empty($PLUGIN_INDEX_ACTIONS)}
5  <ul class="categoryActions">
6    {if isset($U_EDIT)}
7    <li><a href="{$U_EDIT}" title="{'edit category informations'|@translate}">{'edit'|@translate}</a></li>
8    {/if}
9    {if isset($U_SLIDESHOW)}
10    <li><a href="{$U_SLIDESHOW}" title="{'slideshow'|@translate}" rel="nofollow">{'slideshow'|@translate}</a></li>
11    {/if}
12    {if !empty($PLUGIN_INDEX_ACTIONS)}{$PLUGIN_INDEX_ACTIONS}{/if}
13  </ul>
14  {/if}
15  <h2>{$TITLE}</h2>
16</div>
17<div id="content">
18  {$MENUBAR}
19  <div id="subcontent">
20    {if !empty($PLUGIN_INDEX_CONTENT_BEGIN)}{$PLUGIN_INDEX_CONTENT_BEGIN}{/if}
21    {if !empty($category_search_results) }
22    <div>{'Category results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
23      {foreach from=$category_search_results item=res name=res_loop}
24      {if !$smarty.foreach.res_loop.first} &mdash; {/if}
25      {$res}
26      {/foreach}
27    </div>
28    {/if}
29    {if !empty($tag_search_results) }
30    <div>{'Tag results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
31      {foreach from=$tag_search_results item=res name=res_loop}
32      {if !$smarty.foreach.res_loop.first} &mdash; {/if}
33      {$res}
34      {/foreach}
35    </div>
36    {/if}
37    {if !empty($CONTENT_DESCRIPTION) }
38    <p id="additional_info">
39      {$CONTENT_DESCRIPTION}
40    </p>
41    {/if}
42    {if !empty($CATEGORIES) }{$CATEGORIES}{/if}
43    {if !empty($THUMBNAILS) }<div id="thumbnails">{$THUMBNAILS}</div>{/if}
44    {if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
45    {if !empty($PLUGIN_INDEX_CONTENT_END) }{$PLUGIN_INDEX_CONTENT_END}{/if}
46  </div> <!-- subContent -->
47  <div style="clear: both;"></div>
48</div> <!-- content -->
49{if !empty($PLUGIN_INDEX_CONTENT_AFTER)}{$PLUGIN_INDEX_CONTENT_AFTER}{/if}
Note: See TracBrowser for help on using the repository browser.