Changeset 335
- Timestamp:
- 08/24/03 16:51:32 (5 years ago)
- Files:
-
- trunk/index-geo.php (added)
- trunk/index.php (modified) (6 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/index.php
r332 r335 1 1 <?php /* Don't remove these lines, they call the b2 function files ! */ 2 $blog =1;2 $blog = 1; 3 3 require_once('blog.header.php'); 4 4 require_once($abspath.'wp-links/links.php'); 5 5 // not on by default: require_once($abspath.'wp-links/links.weblogs.com.php'); 6 7 6 ?> 8 7 <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> … … 13 12 14 13 <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /> 15 <meta name="generator" content="WordPress .7 " /> <!-- leave this for stats -->14 <meta name="generator" content="WordPress .72" /> <!-- leave this for stats --> 16 15 17 16 <?php if(get_settings('use_geo_positions')) { … … 28 27 <?php get_archives('monthly', '', 'link'); ?> 29 28 <?php // comments_popup_script(); // off by default ?> 30 <?php if(get_settings('use_geo_positions')) { 31 print_PopUpScript(); 32 } ?> 29 33 30 </head> 34 31 … … 42 39 43 40 <h3 class="storytitle" id="post-<?php the_ID(); ?>"> 44 <a href="<?php permalink_link() ?>" rel="bookmark"><?php the_title(); ?></a> 45 <span class="meta"><a href="?cat=<?php the_category_ID() ?>" title="Category: <?php the_category() ?>">[<?php the_category() ?>]</a> — <?php the_author() ?> @ <?php the_time() ?> 46 <?php if(get_settings('use_geo_positions')) { if((get_Lon() != null) && (get_Lon() < 360) &&(get_Lon() > -360)) { ?> 47 — Posted from: <?php print_Lat(); ?> × <?php print_Lon(); ?> 48 <?php } } ?> 49 </span> 41 <a href="<?php permalink_link() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a> 42 <span class="meta"><a href="?cat=<?php the_category_ID() ?>" title="Category: <?php the_category() ?>">[<?php the_category() ?>]</a> — <?php the_author() ?> @ <?php the_time() ?></span> 50 43 </h3> 51 <?php if(get_settings('use_geo_positions')) { if((get_Lon() != null) && (get_Lon() < 360) &&(get_Lon() > -360)) { ?>52 <?php print_UrlPopNav(); ?>53 <?php } } ?>54 44 55 45 <div class="storycontent"> … … 62 52 </div> 63 53 54 <!-- 64 55 <?php trackback_rdf(); ?> 56 57 --> 65 58 66 59 <?php include($abspath . 'b2comments.php'); ?> … … 96 89 <li>Archives: 97 90 <ul> 98 <?php get_archives( ); ?>91 <?php get_archives('monthly'); ?> 99 92 </ul> 100 93 </li>
