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

Last change on this file since 11406 was 8636, checked in by rvelices, 13 years ago

rv_gmaps language keys

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