- Timestamp:
- 07/03/07 23:48:48 (17 months ago)
- Files:
-
- 1 modified
-
trunk/templates/node.tt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
trunk/templates/node.tt
r1065 r1106 48 48 </h2> 49 49 [% END %] 50 [% IF not (content || coord_field_1_value || coord_field_2_value || wgs84_lat || wgs84_long) %]50 [% IF not (content || coord_field_1_value || coord_field_2_value || latitude || longitude) %] 51 51 </div> 52 52 <div id="nonexistent_node_message">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>?</div> … … 87 87 </div> 88 88 [% END %] 89 [% IF ( wgs84_lat AND wgs84_long) OR (os_x AND os_y) OR (osie_x AND osie_y) %]89 [% IF (latitude AND longitude) OR (os_x AND os_y) OR (osie_x AND osie_y) %] 90 90 <div id="coordinates" class="geo"> 91 91 [% END %] … … 109 109 110 110 [% END %] 111 [% IF wgs84_lat AND wgs84_long%]111 [% IF latitude AND longitude %] 112 112 <small> 113 113 (Latitude: 114 <abbr class="latitude" title="[% wgs84_lat %]">[% wgs84_lat %]</abbr> 114 <!-- titles using the wgs84 versions here are for microformats --> 115 <abbr class="latitude" title="[% wgs84_lat %]">[% latitude %]</abbr> 115 116 Longitude: 116 <abbr class="longitude" title="[% wgs84_long %]">[% wgs84_long%]</abbr>)117 <abbr class="longitude" title="[% wgs84_long %]">[% longitude %]</abbr>) 117 118 </small> 118 119 [% END %] 119 [% IF ( wgs84_lat AND wgs84_long) OR (os_x AND os_y) OR (osie_x AND osie_y)%]120 [% IF (latitude AND longitude) OR (os_x AND os_y) OR (osie_x AND osie_y)%] 120 121 </div> 121 122 [% END %]
