source: extensions/stripped_black_bloc/template/index.tpl @ 10851

Last change on this file since 10851 was 10851, checked in by flop25, 13 years ago

first : send files

File size: 3.3 KB
RevLine 
[10851]1<div class="titrePage">
2        <div class="browsePath">
3                <span id="menuswitcher" title="{'Show/hide menu'|@translate}">Menu</span><span class="arrow"> »</span>
4                <h2>{$TITLE}</h2>
5        </div>
6        {if isset($U_EDIT) or isset($U_SLIDESHOW) or !empty($PLUGIN_INDEX_ACTIONS)}
7                <ul class="categoryActions">
8                        {if !empty($PLUGIN_INDEX_ACTIONS)}{$PLUGIN_INDEX_ACTIONS}{/if}
9                        {if isset($U_EDIT)}
10                                <li><a href="{$U_EDIT}" title="{'edit'|@translate}">{'edit'|@translate}</a></li>
11                        {/if}
12                        {if isset($U_CADDIE) }
13                                <li><a href="{$U_CADDIE}" title="{'add to caddie'|@translate}">{'caddie'|@translate}</a></li>
14                        {/if}
15                        {if isset($U_SLIDESHOW)}
16                                <li><a href="{$U_SLIDESHOW}" title="{'slideshow'|@translate}" rel="nofollow">{'slideshow'|@translate}</a></li>
17                        {/if}
18                </ul>
19        {/if}
20        {php}
21                global $pwg_loaded_plugins;
22                $this->assign('GMaps_loaded', isset($pwg_loaded_plugins[ 'GMaps' ]));
23        {/php}
24        {if ($GMaps_loaded)}<div id="text_gmaps" style="display:none">{'GMap'|@translate}</div>{/if}
25</div>
26<table id="content" {if !$stripped.hideMenu}class="menuShown"{/if} cellpadding="0px" cellspacing="0px">
27        <tbody>
28  <tr>
29        {$MENUBAR}
30        <td id="subcontent">
31                {if !empty($PLUGIN_INDEX_CONTENT_BEFORE)}{$PLUGIN_INDEX_CONTENT_BEFORE}{/if}
32                {if isset($chronology.TITLE) }
33                        <h2>{$chronology.TITLE}</h2>
34                {/if}
35                {if isset($chronology_views) }
36                        {if isset($U_MODE_POSTED) }
37                                <a href="{$U_MODE_POSTED}" rel="nofollow">{'display a calendar by posted date'|@translate}</a>
38                        {/if}
39                        {if isset($U_MODE_CREATED) }
40                                <a href="{$U_MODE_CREATED}" rel="nofollow">{'display a calendar by creation date'|@translate}</a>
41                        {/if}
42                        <div class="calendarViews">{'View'|@translate}:
43                                <select onchange="document.location = this.options[this.selectedIndex].value;">
44                                        {foreach from=$chronology_views item=view}
45                                                <option value="{$view.VALUE}"{if $view.SELECTED} selected="selected"{/if}>{$view.CONTENT}</option>
46                                        {/foreach}
47                                </select>
48                        </div>
49                {/if}
50
51                {if !empty($PLUGIN_INDEX_CONTENT_BEGIN)}<div class="content_block">{$PLUGIN_INDEX_CONTENT_BEGIN}</div>{/if}
52                {if !empty($category_search_results) }
53                        <div>{'Album results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
54                                {foreach from=$category_search_results item=res name=res_loop}
55                                {if !$smarty.foreach.res_loop.first} &mdash; {/if}
56                                {$res}
57                                {/foreach}
58                        </div>
59                {/if}
60                {if !empty($tag_search_results) }
61                        <div>{'Tag results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
62                                {foreach from=$tag_search_results item=res name=res_loop}
63                                        {if !$smarty.foreach.res_loop.first} &mdash; {/if}
64                                        {$res}
65                                {/foreach}
66                        </div>
67                {/if}
68                {if isset($FILE_CHRONOLOGY_VIEW) }
69                        {include file=$FILE_CHRONOLOGY_VIEW}
70                {/if}
71
72                {if !empty($CATEGORIES) }{$CATEGORIES}{/if}
73                {if !empty($THUMBNAILS) }
74                                        {$THUMBNAILS}
75                                        {if !empty($navbar) }
76                                                {include file='navigation_thumb.tpl'|@get_extent:'navbar'}
77                                        {/if}
78                                        {if !empty($navbar) }
79                                                {include file='navigation_bar.tpl'|@get_extent:'navbar'}
80                                        {/if}
81                {/if}
82                {if !empty($PLUGIN_INDEX_CONTENT_END) }{$PLUGIN_INDEX_CONTENT_END}{/if}
83                {if !empty($CONTENT_DESCRIPTION) }
84                        <div class="content_block"><div class="additional_info">
85                                {$CONTENT_DESCRIPTION}
86                        </div></div>
87                {/if}
88                {if !empty($PLUGIN_INDEX_CONTENT_AFTER)}{$PLUGIN_INDEX_CONTENT_AFTER}{/if}
89        <div style="clear: both;"></div>
90        </td>
91  </tr> <!-- subContent -->
92  </tbody>
93</table> <!-- content -->
Note: See TracBrowser for help on using the repository browser.