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

Last change on this file since 6245 was 6245, checked in by rvelices, 14 years ago

rv_gmaps compatibility with 2.1.0

  • Property svn:eol-style set to LF
File size: 2.2 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}" rel="nofollow" type="application/vnd.google-earth.kml+xml"><img src="{$PLUGIN_ROOT_URL}/icons/earth_m.png" class="button" alt="earth"></a></li>
18                        <li><a target="_top" href="{$U_HOME}" title="{'return to homepage'|@translate}"><img src="{$ROOT_URL}{$themeconf.icon_dir}/home.png" class="button" alt="{'Home'|@translate}"/></a></li>
19                </ul>
20                <h2>{$TITLE}</h2>
21        </div>
22
23{assign var='displays_x_on_a_map' value='displays %s on a map'|@translate }
24{if not empty($related_categories)}
25        <ul class="fullTagCloud">
26                <li>{'Categories'|@translate}:</li>
27                {foreach from=$related_categories item=cat}
28                <li>{strip}
29                        <a target="_top" href="{$cat.URL}" class="{$cat.CLASS}" title="{$cat.TITLE}">{$cat.NAME}</a>
30                        <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>
31                {/strip}</li>&nbsp;
32                {/foreach}
33        </ul>
34{/if}
35
36{if not empty($related_tags)}
37        <ul class="fullTagCloud">
38                <li>{'Tags'|@translate}:</li>
39                {foreach from=$related_tags item=tag}
40                <li>{strip}
41                        <a target="_top" href="{$tag.URL}" class="tagLevel{$tag.level}{$tag.radu_class|@default}" title="{$tag.TITLE}">{$tag.name}</a>
42                        <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>
43                {/strip}</li>&nbsp;
44                {/foreach}
45        </ul>
46{/if}
47
48{if !empty($navbar) }{include file='navigation_bar.tpl'}{/if}
49
50{if not empty($thumbnails)}
51<ul class="thumbnails">
52        {foreach from=$thumbnails item=thumbnail}
53        <li><span class="wrap1"><span class="wrap2">
54                        <a href="{$thumbnail.URL}" title="{$thumbnail.TN_TITLE}">
55                                <img class="thumbnail" src="{$thumbnail.TN_SRC}" alt="{$thumbnail.TN_ALT}" />
56                        </a>
57                        </span></span>
58        </li>
59        {/foreach}
60</ul>
61{/if}
62
63</div>
Note: See TracBrowser for help on using the repository browser.