source: extensions/Full_Background/template/index.tpl @ 19210

Last change on this file since 19210 was 19210, checked in by Miklfe, 11 years ago
File size: 2.2 KB
Line 
1
2{if !empty($PLUGIN_INDEX_CONTENT_BEFORE)}{$PLUGIN_INDEX_CONTENT_BEFORE}{/if}
3
4
5<div id="content" class="content{if isset($MENUBAR)} contentWithMenu{/if}">
6
7<div class="titrePage{if isset($chronology.TITLE)} calendarTitleBar{/if} visible">
8        <ul class="categoryActions">
9{if !empty($PLUGIN_INDEX_ACTIONS)}{$PLUGIN_INDEX_ACTIONS}{/if}
10        </ul>
11
12<h2>{$TITLE}</h2>
13
14{if isset($chronology_views)}
15<div class="calendarViews">{'View'|@translate}:
16        <select onchange="document.location = this.options[this.selectedIndex].value;">
17                {foreach from=$chronology_views item=view}
18                <option value="{$view.VALUE}"{if $view.SELECTED} selected="selected"{/if}>{$view.CONTENT}</option>
19                {/foreach}
20        </select>
21</div>
22{/if}
23
24
25{if isset($chronology.TITLE)}
26<h2 class="calendarTitle">{$chronology.TITLE}</h2>
27{/if}
28
29</div>{* <!-- titrePage --> *}
30
31{if isset($errors) or not empty($infos)}
32{include file='infos_errors.tpl'}
33{/if}
34{if !empty($PLUGIN_INDEX_CONTENT_BEGIN)}{$PLUGIN_INDEX_CONTENT_BEGIN}{/if}
35
36
37
38{if !empty($category_search_results)}
39<div style="font-size:16px;margin:10px 16px">{'Album results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
40        <em><strong>
41        {foreach from=$category_search_results item=res name=res_loop}
42        {if !$smarty.foreach.res_loop.first} &mdash; {/if}
43        {$res}
44        {/foreach}
45        </strong></em>
46</div>
47{/if}
48
49{if !empty($tag_search_results)}
50<div style="font-size:16px;margin:10px 16px">{'Tag results for'|@translate} <strong>{$QUERY_SEARCH}</strong> :
51        <em><strong>
52        {foreach from=$tag_search_results item=res name=res_loop}
53        {if !$smarty.foreach.res_loop.first} &mdash; {/if}
54        {$res}
55        {/foreach}
56        </strong></em>
57</div>
58{/if}
59
60{if isset($FILE_CHRONOLOGY_VIEW)}
61{include file=$FILE_CHRONOLOGY_VIEW}
62{/if}
63
64
65{if !empty($CONTENT_DESCRIPTION)}
66<div class="additional_info visible">
67        {$CONTENT_DESCRIPTION}
68</div>
69{/if}
70
71
72{if !empty($THUMBNAILS)}
73                {$THUMBNAILS}
74{else}
75        {if !empty($CATEGORIES)}
76                {$CATEGORIES}
77        {/if}
78{/if}
79
80
81{if !empty($navbar)}{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if}
82
83{if !empty($PLUGIN_INDEX_CONTENT_END)}{$PLUGIN_INDEX_CONTENT_END}{/if}
84</div>{* <!-- content --> *}
85{if !empty($PLUGIN_INDEX_CONTENT_AFTER)}{$PLUGIN_INDEX_CONTENT_AFTER}{/if}
86
87
88                </div> <!-- page_content -->                   
89        </div> <!--the_page -->
Note: See TracBrowser for help on using the repository browser.