2008-03-01 13:12:07 +00:00
{ $MENUBAR }
2008-05-20 00:27:26 +00:00
{ if ! empty ( $PLUGIN_INDEX_CONTENT_BEFORE ) } { $PLUGIN_INDEX_CONTENT_BEFORE } { /if }
<div id="content" class="content">
2005-08-18 19:28:29 +00:00
<div class="titrePage">
<ul class="categoryActions">
2008-03-01 13:12:07 +00:00
{ if ! empty ( $image_orders ) }
2006-02-22 01:00:39 +00:00
<li>
2008-03-01 13:12:07 +00:00
{ 'Sort order' | @ translate } :
2006-02-22 01:00:39 +00:00
<select onchange="document.location = this.options[this.selectedIndex].value;">
2008-03-01 13:12:07 +00:00
{ foreach from = $image_orders item = image_order }
2008-09-09 09:53:31 +00:00
<option value=" { $image_order.URL } " { if $image_order.SELECTED } selected="selected" { /if } > { $image_order.DISPLAY } </option>
2008-03-01 13:12:07 +00:00
{ /foreach }
2006-02-22 01:00:39 +00:00
</select>
</li>
2008-03-01 13:12:07 +00:00
{ /if }
2009-02-14 02:24:10 +00:00
2009-01-02 20:57:56 +00:00
{ if isset ( $favorite ) }
2010-06-28 19:45:21 +00:00
<li><a href=" { $favorite.U_FAVORITE } " title=" { 'delete all images from your favorites' | @ translate } "><img src=" { $ROOT_URL } { $themeconf.icon_dir } /del_all_favorites.png" class="button" alt="favorite" title=" { 'delete all images from your favorites' | @ translate } "></a></li>
2009-01-02 20:57:56 +00:00
{ /if }
2008-03-01 13:12:07 +00:00
{ if isset ( $U_CADDIE ) }
2010-04-01 14:14:21 +00:00
<li><a href=" { $U_CADDIE } " title=" { 'add to caddie' | @ translate } "><img src=" { $ROOT_URL } { $themeconf.icon_dir } /caddie_add.png" class="button" alt=" { 'caddie' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_EDIT ) }
2010-03-02 14:54:22 +00:00
<li><a href=" { $U_EDIT } " title=" { 'edit' | @ translate } "><img src=" { $ROOT_URL } { $themeconf.icon_dir } /category_edit.png" class="button" alt=" { 'edit' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_SEARCH_RULES ) }
2009-03-09 19:41:45 +00:00
<li><a href=" { $U_SEARCH_RULES } " onclick="popuphelp(this.href); return false;" title=" { 'Search rules' | @ translate } " rel="nofollow"><img src=" { $ROOT_URL } { $themeconf.icon_dir } /search_rules.png" class="button" alt="(?)"></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_SLIDESHOW ) }
2009-03-09 19:41:45 +00:00
<li><a href=" { $U_SLIDESHOW } " title=" { 'slideshow' | @ translate } " rel="nofollow"><img src=" { $ROOT_URL } { $themeconf.icon_dir } /start_slideshow.png" class="button" alt=" { 'slideshow' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_MODE_FLAT ) }
2010-09-16 19:03:56 +00:00
<li><a href=" { $U_MODE_FLAT } " title=" { 'display all elements in all sub-albums' | @ translate } " rel="nofollow"><img src=" { $ROOT_URL } { $themeconf.icon_dir } /flat.png" class="button" alt=" { 'display all elements in all sub-albums' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_MODE_NORMAL ) }
2010-03-02 14:54:22 +00:00
<li><a href=" { $U_MODE_NORMAL } " title=" { 'return to normal view mode' | @ translate } "><img src=" { $ROOT_URL } { $themeconf.icon_dir } /normal_mode.png" class="button" alt=" { 'return to normal view mode' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_MODE_POSTED ) }
2010-03-02 14:54:22 +00:00
<li><a href=" { $U_MODE_POSTED } " title=" { 'display a calendar by posted date' | @ translate } " rel="nofollow"><img src=" { $ROOT_URL } { $themeconf.icon_dir } /calendar.png" class="button" alt=" { 'display a calendar by posted date' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if isset ( $U_MODE_CREATED ) }
2010-03-02 14:54:22 +00:00
<li><a href=" { $U_MODE_CREATED } " title=" { 'display a calendar by creation date' | @ translate } " rel="nofollow"><img src=" { $ROOT_URL } { $themeconf.icon_dir } /calendar_created.png" class="button" alt=" { 'display a calendar by creation date' | @ translate } "></a></li>
2008-03-01 13:12:07 +00:00
{ /if }
{ if ! empty ( $PLUGIN_INDEX_ACTIONS ) } { $PLUGIN_INDEX_ACTIONS } { /if }
2005-08-18 19:28:29 +00:00
</ul>
2006-02-28 04:28:06 +00:00
2008-03-01 13:12:07 +00:00
<h2> { $TITLE } </h2>
{ if isset ( $chronology_views ) }
2010-03-02 14:54:22 +00:00
<div class="calendarViews"> { 'View' | @ translate } :
2006-03-03 01:57:39 +00:00
<select onchange="document.location = this.options[this.selectedIndex].value;">
2008-03-01 13:12:07 +00:00
{ foreach from = $chronology_views item = view }
2008-03-06 00:25:47 +00:00
<option value=" { $view.VALUE } " { if $view.SELECTED } selected="selected" { /if } > { $view.CONTENT } </option>
2008-03-01 13:12:07 +00:00
{ /foreach }
2006-03-03 01:57:39 +00:00
</select>
</div>
2008-03-01 13:12:07 +00:00
{ /if }
2006-03-03 01:57:39 +00:00
2008-03-01 13:12:07 +00:00
{ if isset ( $chronology.TITLE ) }
<h2> { $chronology.TITLE } </h2>
{ /if }
2006-03-03 01:57:39 +00:00
2006-04-05 23:08:37 +00:00
</div> <!-- titrePage -->
2006-02-28 04:28:06 +00:00
2008-03-08 12:38:09 +00:00
{ if ! empty ( $PLUGIN_INDEX_CONTENT_BEGIN ) } { $PLUGIN_INDEX_CONTENT_BEGIN } { /if }
2008-03-01 13:12:07 +00:00
{ if ! empty ( $category_search_results ) }
2010-09-16 19:03:56 +00:00
<div style="font-size:16px;margin:10px 16px"> { 'Album results for' | @ translate } <strong> { $QUERY_SEARCH } </strong> :
2008-03-01 13:12:07 +00:00
<em><strong>
{ foreach from = $category_search_results item = res name = res_loop }
{ if ! $smarty.foreach.res_loop.first } — { /if }
{ $res }
{ /foreach }
</strong></em>
</div>
{ /if }
{ if ! empty ( $tag_search_results ) }
2008-10-18 00:45:45 +00:00
<div style="font-size:16px;margin:10px 16px"> { 'Tag results for' | @ translate } <strong> { $QUERY_SEARCH } </strong> :
2008-03-01 13:12:07 +00:00
<em><strong>
{ foreach from = $tag_search_results item = res name = res_loop }
{ if ! $smarty.foreach.res_loop.first } — { /if }
{ $res }
{ /foreach }
</strong></em>
2006-03-03 01:57:39 +00:00
</div>
2008-03-01 13:12:07 +00:00
{ /if }
2006-02-22 01:00:39 +00:00
2008-03-01 13:12:07 +00:00
{ if isset ( $FILE_CHRONOLOGY_VIEW ) }
{ include file = $FILE_CHRONOLOGY_VIEW }
{ /if }
2006-02-20 04:39:37 +00:00
2008-03-01 13:12:07 +00:00
{ if ! empty ( $CATEGORIES ) } { $CATEGORIES } { /if }
{ if ! empty ( $THUMBNAILS ) } { $THUMBNAILS } { /if }
2006-04-05 23:08:37 +00:00
2009-03-07 21:34:55 +00:00
{ if ! empty ( $navbar ) } { include file = 'navigation_bar.tpl' | @ get_extent : 'navbar' } { /if }
2008-03-01 13:12:07 +00:00
{ if ! empty ( $CONTENT_DESCRIPTION ) }
<div class="additional_info">
{ $CONTENT_DESCRIPTION }
2005-08-18 07:04:05 +00:00
</div>
2008-03-01 13:12:07 +00:00
{ /if }
2005-08-18 07:04:05 +00:00
2008-03-01 13:12:07 +00:00
{ if ! empty ( $PLUGIN_INDEX_CONTENT_END ) } { $PLUGIN_INDEX_CONTENT_END } { /if }
2005-08-18 19:28:29 +00:00
</div> <!-- content -->
2008-05-20 00:27:26 +00:00
{ if ! empty ( $PLUGIN_INDEX_CONTENT_AFTER ) } { $PLUGIN_INDEX_CONTENT_AFTER } { /if }