|
Revision 12123, 0.9 KB
(checked in by plg, 21 months ago)
|
|
merge r12122 from branch 2.2 to trunk
bug 2436 fixed: remove HTML tags when displaying album name as tooltip
|
-
Property svn:eol-style set to
LF
|
| Line | |
|---|
| 1 | |
|---|
| 2 | <ul class="thumbnailCategories"> |
|---|
| 3 | {foreach from=$category_thumbnails item=cat} |
|---|
| 4 | <li> |
|---|
| 5 | <div class="thumbnailCategory"> |
|---|
| 6 | <div class="illustration"> |
|---|
| 7 | <a href="{$cat.URL}"> |
|---|
| 8 | <img src="{$cat.TN_SRC}" alt="{$cat.TN_ALT}" title="{$cat.NAME|@replace:'"':' '|@strip_tags:false} - {'display this album'|@translate}"> |
|---|
| 9 | </a> |
|---|
| 10 | </div> |
|---|
| 11 | <div class="description"> |
|---|
| 12 | <h3> |
|---|
| 13 | <a href="{$cat.URL}">{$cat.NAME}</a> |
|---|
| 14 | {if !empty($cat.icon_ts)} |
|---|
| 15 | <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="(!)"> |
|---|
| 16 | {/if} |
|---|
| 17 | </h3> |
|---|
| 18 | <div class="text"> |
|---|
| 19 | {if isset($cat.INFO_DATES) } |
|---|
| 20 | <p class="dates">{$cat.INFO_DATES}</p> |
|---|
| 21 | {/if} |
|---|
| 22 | <p class="Nb_images">{$cat.CAPTION_NB_IMAGES}</p> |
|---|
| 23 | {if not empty($cat.DESCRIPTION)} |
|---|
| 24 | <p>{$cat.DESCRIPTION}</p> |
|---|
| 25 | {/if} |
|---|
| 26 | </div> |
|---|
| 27 | </div> |
|---|
| 28 | </div> |
|---|
| 29 | </li> |
|---|
| 30 | {/foreach} |
|---|
| 31 | </ul> |
|---|