| 1 | [% USE CGI %] |
|---|
| 2 | [% INCLUDE header.tt %] |
|---|
| 3 | [% INCLUDE banner.tt %] |
|---|
| 4 | <div id="content"> |
|---|
| 5 | [% INCLUDE navbar.tt %] |
|---|
| 6 | <div id="maincontent"> |
|---|
| 7 | [% IF oldid %] |
|---|
| 8 | <div id="redirect_message">(redirected from <a href="[% full_cgi_url %]?id=[% oldid %];redirect=0">[% oldid.replace('_', ' ') %]</a>)</div> |
|---|
| 9 | [% END %] |
|---|
| 10 | |
|---|
| 11 | [% IF wgs84_lat AND wgs84_long AND display_google_maps and gmaps_api_key %] |
|---|
| 12 | <div id="map" style="float:right; width: 300px; height: 200px"></div> |
|---|
| 13 | <script defer="defer" type="text/javascript"> |
|---|
| 14 | //<![CDATA[ |
|---|
| 15 | var map = new GMap(document.getElementById("map")); |
|---|
| 16 | map.addControl(new GSmallMapControl()); |
|---|
| 17 | map.centerAndZoom(new GPoint([% longitude %], [% latitude %]), 3); |
|---|
| 18 | var point0 = new GPoint([% wgs84_long %], [% wgs84_lat %]); |
|---|
| 19 | var marker0 = new GMarker(point0,baseIcon); |
|---|
| 20 | GEvent.addListener(marker0, "click", function() { |
|---|
| 21 | marker0.openInfoWindowHtml("[% node_name %]"); |
|---|
| 22 | }); |
|---|
| 23 | map.addOverlay(marker0); |
|---|
| 24 | //]]> |
|---|
| 25 | </script> |
|---|
| 26 | [% END %] |
|---|
| 27 | |
|---|
| 28 | [% IF current %] |
|---|
| 29 | [% IF backlinks_in_title AND is_indexable_node %] |
|---|
| 30 | <h2 class="node_name"><a href="[% cgi_url %]?action=index;index_type=[% CGI.escape(index_type) %];index_value=[% CGI.escape(index_value) %]">[% node_name %]</a></h2> |
|---|
| 31 | [% ELSIF backlinks_in_title %] |
|---|
| 32 | <h2 class="node_name"><a href="[% cgi_url %]?action=show_backlinks&id=[% CGI.escape(node_name) %]">[% node_name %]</a></h2> |
|---|
| 33 | [% ELSE %] |
|---|
| 34 | <h2 class="node_name">[% node_name %]</h2> |
|---|
| 35 | [% END %] |
|---|
| 36 | [% ELSE %] |
|---|
| 37 | <h2> |
|---|
| 38 | <em>Historical version [% version %] of |
|---|
| 39 | <span class="node_name">[% node_name %]</span></em> |
|---|
| 40 | </h2> |
|---|
| 41 | [% END %] |
|---|
| 42 | [% IF not (content || coord_field_1_value || coord_field_2_value || latitude || longitude) %] |
|---|
| 43 | We don't have a node called "[% node_param %]". Would you like to <a href="[% full_cgi_url %]?action=edit;id=[% node_param %]">create it</a>? |
|---|
| 44 | [% ELSE %] |
|---|
| 45 | [% INCLUDE display_metadata.tt %] |
|---|
| 46 | |
|---|
| 47 | <!-- NODE CONTENT STARTS --> |
|---|
| 48 | [% content %] |
|---|
| 49 | <!-- NODE CONTENT ENDS --> |
|---|
| 50 | |
|---|
| 51 | [% TRY %] |
|---|
| 52 | [% INCLUDE custom_node.tt %] |
|---|
| 53 | [% CATCH %] |
|---|
| 54 | [% END %] |
|---|
| 55 | |
|---|
| 56 | [% IF coord_field_1_value AND coord_field_2_value %] |
|---|
| 57 | <br clear="all" /> |
|---|
| 58 | <div id="find_within_distance"> |
|---|
| 59 | <form action="search.cgi"> |
|---|
| 60 | <label for="distance">Find all things within</label> |
|---|
| 61 | <select name="[% dist_field %]" id="distance"> |
|---|
| 62 | <option value="500">500 metres</option> |
|---|
| 63 | <option value="1000">1 kilometre</option> |
|---|
| 64 | <option value="1500">1.5 kilometres</option> |
|---|
| 65 | <option value="2000">2 kilometres</option> |
|---|
| 66 | </select> |
|---|
| 67 | of here. |
|---|
| 68 | <input type="hidden" name="[% coord_field_1 %]" value="[% coord_field_1_value %]" /> |
|---|
| 69 | <input type="hidden" name="[% coord_field_2 %]" value="[% coord_field_2_value %]" /> |
|---|
| 70 | <input type="submit" name="Go" value="Go" class="form_button" /> |
|---|
| 71 | </form> |
|---|
| 72 | </div> |
|---|
| 73 | [% END %] |
|---|
| 74 | [% IF (latitude AND longitude) OR (os_x AND os_y) OR (osie_x AND osie_y) %] |
|---|
| 75 | <div id="coordinates"> |
|---|
| 76 | [% END %] |
|---|
| 77 | [% IF os_x AND os_y %] |
|---|
| 78 | <small>OS X co-ord: [% CGI.escapeHTML(os_x) %]</small> |
|---|
| 79 | |
|---|
| 80 | <small>OS Y co-ord: [% CGI.escapeHTML(os_y) %]</small> |
|---|
| 81 | |
|---|
| 82 | [% ELSIF osie_x AND osie_y %] |
|---|
| 83 | <small>OS IE X co-ord: [% CGI.escapeHTML(osie_x) %]</small> |
|---|
| 84 | |
|---|
| 85 | <small>OS IE Y co-ord: [% CGI.escapeHTML(osie_y) %]</small> |
|---|
| 86 | |
|---|
| 87 | [% END %] |
|---|
| 88 | [% IF latitude AND longitude %] |
|---|
| 89 | <small>(Latitude: [% latitude %] Longitude: [% longitude %])</small> |
|---|
| 90 | [% END %] |
|---|
| 91 | [% IF (latitude AND longitude) OR (os_x AND os_y) OR (osie_x AND osie_y)%] |
|---|
| 92 | </div> |
|---|
| 93 | [% END %] |
|---|
| 94 | <div id="rdf_link"> |
|---|
| 95 | <a href="[% cgi_url %]?id=[% node_param %];format=rdf">RDF/XML for this |
|---|
| 96 | node</a> |
|---|
| 97 | [% IF rss_locale_url %] |
|---|
| 98 | / <a href="[% rss_locale_url %]">RSS feed for this locale</a> |
|---|
| 99 | [% END %] |
|---|
| 100 | [% IF rss_category_url %] |
|---|
| 101 | / <a href="[% rss_category_url %]">RSS feed for this category</a> |
|---|
| 102 | [% END %] |
|---|
| 103 | </div> |
|---|
| 104 | <div id="version"> |
|---|
| 105 | [% IF current %] |
|---|
| 106 | Last edited [% last_modified %] |
|---|
| 107 | [% IF version == 1 %] |
|---|
| 108 | (version [% version %]) |
|---|
| 109 | [% ELSE %] |
|---|
| 110 | (version [% version %]; |
|---|
| 111 | <a href="[% cgi_url %]?id=[% node_param %];version=[% version - 1 %];diffversion=[% version %]">diff</a>). |
|---|
| 112 | [% END %] |
|---|
| 113 | [% ELSE %] |
|---|
| 114 | This is version [% version %] (as of [% last_modified %]). |
|---|
| 115 | <a href="[% cgi_url %]?[% node_param %]">View current version.</a> |
|---|
| 116 | [% END %] |
|---|
| 117 | [% IF version AND version > 1 %] |
|---|
| 118 | <a href="[% cgi_url %]?action=list_all_versions;id=[% node_param %]">List all |
|---|
| 119 | versions.</a> |
|---|
| 120 | [% END %] |
|---|
| 121 | </div> |
|---|
| 122 | [% END %] |
|---|
| 123 | </div> |
|---|
| 124 | [% INCLUDE footer.tt %] |
|---|