|
Revision 9812, 1.7 KB
(checked in by flop25, 2 years ago)
|
|
picpile_cat fully operational
|
| Line | |
|---|
| 1 | {combine_css path="template-extension/flop_style/mainpage_categories/picpile_cat.css"} |
|---|
| 2 | {if $themeconf.name == "Sylvia"} |
|---|
| 3 | {html_head} |
|---|
| 4 | {literal}#theCategoryPage .content { |
|---|
| 5 | margin: 21px 10px 0 290px !important; |
|---|
| 6 | }{/literal} |
|---|
| 7 | {/html_head} |
|---|
| 8 | {/if} |
|---|
| 9 | <ul class="thumbnailCategories"> |
|---|
| 10 | {foreach from=$category_thumbnails item=cat} |
|---|
| 11 | <li> |
|---|
| 12 | <span class="wrap1"><div class="albumHolder"> |
|---|
| 13 | <div class="picRotated"></div> |
|---|
| 14 | <div class="album"> <a class="ajax" href="{$cat.URL}"> <span title="Browse Album" class="highlight"></span> <img width="160" height="120" title="{$cat.NAME|@replace:'"':' '} - {'display this album'|@translate}" alt="{$cat.TN_ALT}" src="{$cat.TN_SRC}"> <span title="Contains {$cat.CAPTION_NB_IMAGES} images" class="albumCnt">{$cat.CAPTION_NB_IMAGES}</span> </a> </div> |
|---|
| 15 | <div title="{$cat.NAME}" class="albumTitle">{$cat.NAME}</div> |
|---|
| 16 | <div class="clear"></div> |
|---|
| 17 | </div> |
|---|
| 18 | {* |
|---|
| 19 | <div class="thumbnailCategory"> |
|---|
| 20 | <div class="illustration"> |
|---|
| 21 | <a href="{$cat.URL}"> |
|---|
| 22 | <img src="{$cat.TN_SRC}" alt="{$cat.TN_ALT}" title="{$cat.NAME|@replace:'"':' '} - {'display this album'|@translate}"> |
|---|
| 23 | </a> |
|---|
| 24 | </div> |
|---|
| 25 | <div class="description"> |
|---|
| 26 | <h3> |
|---|
| 27 | <a href="{$cat.URL}">{$cat.NAME}</a> |
|---|
| 28 | {if !empty($cat.icon_ts)} |
|---|
| 29 | <img title="{$cat.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent{if $cat.icon_ts.IS_CHILD_DATE}_by_child{/if}.png" alt="(!)"> |
|---|
| 30 | {/if} |
|---|
| 31 | </h3> |
|---|
| 32 | <div class="text"> |
|---|
| 33 | {if isset($cat.INFO_DATES) } |
|---|
| 34 | <p class="dates">{$cat.INFO_DATES}</p> |
|---|
| 35 | {/if} |
|---|
| 36 | <p class="Nb_images">{$cat.CAPTION_NB_IMAGES}</p> |
|---|
| 37 | {if not empty($cat.DESCRIPTION)} |
|---|
| 38 | <p>{$cat.DESCRIPTION}</p> |
|---|
| 39 | {/if} |
|---|
| 40 | </div> |
|---|
| 41 | </div> |
|---|
| 42 | </div> |
|---|
| 43 | *} |
|---|
| 44 | </span> |
|---|
| 45 | </li> |
|---|
| 46 | {/foreach} |
|---|
| 47 | </ul> |
|---|