diff options
author | nikrou <nikrou@piwigo.org> | 2009-03-11 19:41:21 +0000 |
---|---|---|
committer | nikrou <nikrou@piwigo.org> | 2009-03-11 19:41:21 +0000 |
commit | dc6176db21dfee3b786feeb29cd32e33a036b4c0 (patch) | |
tree | 3871f8de1244f740001df1a2429366e3259a76db | |
parent | 36d0da30d307cd821413ccb8ea1ccc68de1d8538 (diff) |
fix html warnings. unclosed monotags
git-svn-id: http://piwigo.org/svn/trunk@3189 68402e56-0260-453c-a942-63ccdbb3a9ee
-rw-r--r-- | template/yoga/mainpage_categories.tpl | 2 | ||||
-rw-r--r-- | template/yoga/menubar_categories.tpl | 2 | ||||
-rw-r--r-- | template/yoga/thumbnails.tpl | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/template/yoga/mainpage_categories.tpl b/template/yoga/mainpage_categories.tpl index 6b96167e5..d90bd9c9c 100644 --- a/template/yoga/mainpage_categories.tpl +++ b/template/yoga/mainpage_categories.tpl @@ -13,7 +13,7 @@ <h3> <a href="{$cat.URL}">{$cat.NAME}</a> {if !empty($cat.icon_ts)} - <img title="{$cat.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent{if $cat.icon_ts.IS_CHILD_DATE}_by_child{/if}.png" class="icon" alt="(!)" /> + <img title="{$cat.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent{if $cat.icon_ts.IS_CHILD_DATE}_by_child{/if}.png" class="icon" alt="(!)"> {/if} </h3> <div class="text"> diff --git a/template/yoga/menubar_categories.tpl b/template/yoga/menubar_categories.tpl index 0dbb22b77..3979b712d 100644 --- a/template/yoga/menubar_categories.tpl +++ b/template/yoga/menubar_categories.tpl @@ -22,7 +22,7 @@ <span class="{if $cat.nb_images > 0}menuInfoCat{else}menuInfoCatByChild{/if}" title="{$cat.TITLE}">[{$cat.count_images}]</span> {/if} {if !empty($cat.icon_ts)} - <img title="{$cat.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent{if $cat.icon_ts.IS_CHILD_DATE}_by_child{/if}.png" class="icon" alt="(!)" /> + <img title="{$cat.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent{if $cat.icon_ts.IS_CHILD_DATE}_by_child{/if}.png" class="icon" alt="(!)"> {/if} {assign var='ref_level' value=$cat.LEVEL} {/foreach} diff --git a/template/yoga/thumbnails.tpl b/template/yoga/thumbnails.tpl index 31d6cb890..8aaf5ac2f 100644 --- a/template/yoga/thumbnails.tpl +++ b/template/yoga/thumbnails.tpl @@ -13,7 +13,7 @@ <span class="thumbLegend"> {if isset($thumbnail.NAME)}{$thumbnail.NAME}{/if} {if !empty($thumbnail.icon_ts)} - <img title="{$thumbnail.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent.png" class="icon" alt="(!)" /> + <img title="{$thumbnail.icon_ts.TITLE}" src="{$ROOT_URL}{$themeconf.icon_dir}/recent.png" class="icon" alt="(!)"> {/if} {if isset($thumbnail.NB_COMMENTS)} <span class="{if 0==$thumbnail.NB_COMMENTS}zero {/if}nb-comments"> |