source: extensions/Simple_Grey/index.tpl @ 4456

Last change on this file since 4456 was 4456, checked in by boulde, 14 years ago

Simple: initial import (v1.1)

File size: 2.5 KB
Line 
1{if !empty($PLUGIN_INDEX_CONTENT_BEFORE)}{$PLUGIN_INDEX_CONTENT_BEFORE}{/if}
2<div id="titrePage">
3  <a href="{$U_HOME}" rel="home"><img src="{$ROOT_URL}template/{$themeconf.template}/icon/home.png" title="{'home'|@translate}" alt="{'home'|@translate}" /></a> »
4  <span id="menuswitcher" title="Afficher/cacher le menu">Menu</span> »
5  {if isset($U_EDIT) or isset($U_SLIDESHOW) or !empty($PLUGIN_INDEX_ACTIONS)}
6  <ul class="categoryActions">
7    {if isset($U_EDIT)}
8    <li><a href="{$U_EDIT}" title="{'edit category informations'|@translate}">{'edit'|@translate}</a></li>
9    {/if}
10    {if isset($U_SLIDESHOW)}
11    <li><a href="{$U_SLIDESHOW}" title="{'slideshow'|@translate}" rel="nofollow">{'slideshow'|@translate}</a></li>
12    {/if}
13    {if !empty($PLUGIN_INDEX_ACTIONS)}{$PLUGIN_INDEX_ACTIONS}{/if}
14  </ul>
15  {/if}
16  <h2>{$TITLE}</h2>
17</div> <!-- titrePage -->
18<div id="content">
19  {$MENUBAR}
20  <div id="subcontent">
21    {if !empty($PLUGIN_INDEX_CONTENT_BEGIN)}{$PLUGIN_INDEX_CONTENT_BEGIN}{/if}
22    {if !empty($category_search_results) }
23    <div>{'Category results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
24      {foreach from=$category_search_results item=res name=res_loop}
25      {if !$smarty.foreach.res_loop.first} &mdash; {/if}
26      {$res}
27      {/foreach}
28    </div>
29    {/if}
30    {if !empty($tag_search_results) }
31    <div>{'Tag results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
32      {foreach from=$tag_search_results item=res name=res_loop}
33      {if !$smarty.foreach.res_loop.first} &mdash; {/if}
34      {$res}
35      {/foreach}
36    </div>
37    {/if}
38    {if !empty($CONTENT_DESCRIPTION) }
39    <p id="additional_info">
40      {$CONTENT_DESCRIPTION}
41    </p>
42    {/if}
43    {if !empty($CATEGORIES) or !empty($THUMBNAILS)}
44    {* CONTENT_DESCRIPTION_TOP doesn't exists yet *}
45    {if !empty($CONTENT_DESCRIPTION_TOP) }
46    <div>
47      {$CONTENT_DESCRIPTION_TOP}
48    </div>
49    {/if}
50    {if !empty($CATEGORIES) }<div id="categories">{$CATEGORIES}</div>{/if}
51    {if !empty($THUMBNAILS) }<div id="thumbnails">{$THUMBNAILS}</div>{/if}
52    {* CONTENT_DESCRIPTION_BOTTOM doesn't exists yet *}
53    {if !empty($CONTENT_DESCRIPTION_BOTTOM) }
54    <div>
55      {$CONTENT_DESCRIPTION_BOTTOM}
56    </div>
57    {/if}
58    {/if}
59    {if !empty($NAV_BAR) }
60    <div class="navigationBar">
61      {$NAV_BAR}
62    </div>
63    {/if}
64  </div> <!-- subContent -->
65  <div style="clear: both;"></div>
66  {if !empty($PLUGIN_INDEX_CONTENT_END) }{$PLUGIN_INDEX_CONTENT_END}{/if}
67</div> <!-- content -->
68{if !empty($PLUGIN_INDEX_CONTENT_AFTER)}{$PLUGIN_INDEX_CONTENT_AFTER}{/if}
Note: See TracBrowser for help on using the repository browser.