source: extensions/rv_gmaps/trunk/template/mapl.tpl @ 13092

Last change on this file since 13092 was 13092, checked in by rvelices, 12 years ago

rv_gmaps compatible with core version 2.4

  • Property svn:eol-style set to LF
File size: 2.0 KB
Line 
1{html_style}
2.fullTagCloud {ldelim}
3        text-align: justify;
4        padding: 0;
5        margin: 0.5em 1em 0.5em 1em;
6}
7.fullTagCloud LI {ldelim}
8        display: inline;white-space: nowrap;
9}
10{/html_style}
11
12<div id="content" class="content" style="margin: 0;">
13        <div class="titrePage">
14                <ul class="categoryActions">
15                        <li><a href="{$U_KML}" title="{$KML_LINK_TITLE}" class="pwg-state-default pwg-button" rel="nofollow" type="application/vnd.google-earth.kml+xml">
16                                <span class="pwg-icon pwg-icon-globe">&nbsp;</span><span class="pwg-button-text">earth</span>
17                        </a><li>
18                        <li><a target="_top" href="{$U_HOME}" title="{'Home'|@translate}" class="pwg-state-default pwg-button">
19                                <span class="pwg-icon pwg-icon-home">&nbsp;</span><span class="pwg-button-text">{'Home'|@translate}</span>
20                        </a><li>
21                </ul>
22                <h2>{$TITLE}</h2>
23        </div>
24
25{assign var='displays_x_on_a_map' value='displays %s on a map'|@translate }
26{if not empty($related_categories)}
27        <ul class="fullTagCloud">
28                <li>{'Albums'|@translate}:</li>
29                {foreach from=$related_categories item=cat}
30                <li>{strip}
31                        <a target="_top" href="{$cat.URL}" class="{$cat.CLASS}" title="{$cat.TITLE}">{$cat.NAME}</a>
32                        <a target="_top" href="{$cat.U_MAP}" title="{$pwg->sprintf($displays_x_on_a_map, $cat.NAME)}" ><img src="{$PLUGIN_ROOT_URL}/icons/map_s.png" alt="map" class="button" /></a>
33                {/strip}</li>&nbsp;
34                {/foreach}
35        </ul>
36{/if}
37
38{if not empty($related_tags)}
39        <ul class="fullTagCloud">
40                <li>{'Tags'|@translate}:</li>
41                {foreach from=$related_tags item=tag}
42                <li>{strip}
43                        <a target="_top" href="{$tag.URL}" class="tagLevel{$tag.level}{$tag.radu_class|@default}" title="{$tag.TITLE}">{$tag.name}</a>
44                        <a target="_top" href="{$tag.U_MAP}" title="{$pwg->sprintf($displays_x_on_a_map, $tag.name)}"><img src="{$PLUGIN_ROOT_URL}/icons/map_s.png" alt="map" class="button" /></a>
45                {/strip}</li>&nbsp;
46                {/foreach}
47        </ul>
48{/if}
49
50{if !empty($navbar)}{include file='navigation_bar.tpl' assign='NAVBAR'}{$NAVBAR}{/if}
51
52{if !empty($THUMBNAILS)}
53<ul class="thumbnails" id="thumbnails">
54{$THUMBNAILS}
55</ul>
56{/if}
57
58{if !empty($NAVBAR)}{$NAVBAR}{/if}
59</div>
Note: See TracBrowser for help on using the repository browser.