Changeset 8401 for trunk/themes/default
- Timestamp:
- Dec 30, 2010, 8:47:17 PM (14 years ago)
- Location:
- trunk/themes/default/template
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/themes/default/template/index.tpl
r8091 r8401 4 4 <div class="titrePage"> 5 5 <ul class="categoryActions"> 6 {if !empty($image_orders) 6 {if !empty($image_orders)} 7 7 <li> 8 8 {'Sort order'|@translate}: 9 9 <select onchange="document.location = this.options[this.selectedIndex].value;"> 10 {foreach from=$image_orders item=image_order 10 {foreach from=$image_orders item=image_order} 11 11 <option value="{$image_order.URL}"{if $image_order.SELECTED} selected="selected"{/if}>{$image_order.DISPLAY}</option> 12 12 {/foreach} … … 76 76 {/if} 77 77 78 {if isset($chronology.TITLE) 78 {if isset($chronology.TITLE)} 79 79 <h2>{$chronology.TITLE}</h2> 80 80 {/if} 81 81 82 </div> 82 </div><!-- titrePage --> 83 83 84 84 {if !empty($PLUGIN_INDEX_CONTENT_BEGIN)}{$PLUGIN_INDEX_CONTENT_BEGIN}{/if} 85 85 86 {if !empty($category_search_results) 86 {if !empty($category_search_results)} 87 87 <div style="font-size:16px;margin:10px 16px">{'Album results for'|@translate} <strong>{$QUERY_SEARCH}</strong> : 88 89 90 91 92 93 88 <em><strong> 89 {foreach from=$category_search_results item=res name=res_loop} 90 {if !$smarty.foreach.res_loop.first} — {/if} 91 {$res} 92 {/foreach} 93 </strong></em> 94 94 </div> 95 95 {/if} 96 96 97 {if !empty($tag_search_results) 97 {if !empty($tag_search_results)} 98 98 <div style="font-size:16px;margin:10px 16px">{'Tag results for'|@translate} <strong>{$QUERY_SEARCH}</strong> : 99 100 101 102 103 104 99 <em><strong> 100 {foreach from=$tag_search_results item=res name=res_loop} 101 {if !$smarty.foreach.res_loop.first} — {/if} 102 {$res} 103 {/foreach} 104 </strong></em> 105 105 </div> 106 106 {/if} 107 107 108 {if isset($FILE_CHRONOLOGY_VIEW) 108 {if isset($FILE_CHRONOLOGY_VIEW)} 109 109 {include file=$FILE_CHRONOLOGY_VIEW} 110 110 {/if} 111 111 112 {if !empty($CATEGORIES) }{$CATEGORIES}{/if} 113 {if !empty($THUMBNAILS) }{$THUMBNAILS}{/if} 114 115 {if !empty($navbar) }{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if} 116 117 {if !empty($CONTENT_DESCRIPTION) } 112 {if !empty($CONTENT_DESCRIPTION)} 118 113 <div class="additional_info"> 119 114 {$CONTENT_DESCRIPTION} 120 115 </div> 121 116 {/if} 122 117 123 {if !empty($PLUGIN_INDEX_CONTENT_END) }{$PLUGIN_INDEX_CONTENT_END}{/if} 124 </div> <!-- content --> 118 {if !empty($CATEGORIES)}{$CATEGORIES}{/if} 119 {if !empty($THUMBNAILS)} 120 <ul class="thumbnails" id="thumbnails"> 121 {$THUMBNAILS} 122 </ul> 123 {/if} 125 124 125 {if !empty($navbar)}{include file='navigation_bar.tpl'|@get_extent:'navbar'}{/if} 126 127 {if !empty($PLUGIN_INDEX_CONTENT_END)}{$PLUGIN_INDEX_CONTENT_END}{/if} 128 </div><!-- content --> 126 129 {if !empty($PLUGIN_INDEX_CONTENT_AFTER)}{$PLUGIN_INDEX_CONTENT_AFTER}{/if} -
trunk/themes/default/template/thumbnails.tpl
r8362 r8401 1 1 2 2 {if !empty($thumbnails)} 3 <ul class="thumbnails">4 3 {foreach from=$thumbnails item=thumbnail} 5 4 <li> … … 32 31 </li> 33 32 {/foreach} 34 </ul>35 33 {/if} 36 37
Note: See TracChangeset
for help on using the changeset viewer.