Advertisement
Guest User

Untitled

a guest
Sep 23rd, 2011
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.61 KB | None | 0 0
  1. <?php get_header(); ?>
  2.  
  3. <div id="clock"><script type="text/javascript">showdate();</script></div>
  4.  
  5. <div id="content"><div id="content-inner">
  6.  
  7. <?php get_sidebar(); ?>
  8.  
  9.  
  10.  
  11. <div id="maincol">
  12.  
  13. <div class="col-inner">
  14.  
  15. <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
  16.  
  17.  
  18.  
  19. <div class="post" id="post-<?php the_ID(); ?>">
  20.  
  21. <div class="post-title">
  22.  
  23. <h3><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h3>
  24. </div>
  25.  
  26.  
  27.  
  28. <div class="entry">
  29.  
  30. <?php the_content(''.__('Read the rest of this entry <span class="meta-nav">&raquo;</span>', 'sandbox').''); ?>
  31.  
  32. <?php link_pages("\t\t\t\t\t<div class='page-link'>".__('Pages: ', 'sandbox'), "</div>\n", 'number'); ?>
  33.  
  34. <div class="entry-meta">
  35.  
  36. <small><?php printf(__('This entry was written by %1$s and posted on <abbr class="published" title="%2$sT%3$s">%4$s at %5$s</abbr> and filed under %6$s. Bookmark the <a href="%7$s" title="Permalink to %8$s" rel="bookmark">permalink</a>. Follow any comments here with the <a href="%9$s" title="Comments RSS to %8$s" rel="alternate" type="application/rss+xml">RSS feed for this post</a>.', 'sandbox'),
  37. '<span class="author vcard"><a class="url fn n" href="'.get_author_link(false, $authordata->ID, $authordata->user_nicename).'" title="' . sprintf(__('View all posts by %s', 'sandbox'), $authordata->display_name) . '">'.get_the_author().'</a></span>',
  38. get_the_time('Y-m-d'),
  39. get_the_time('H:i:sO'),
  40. the_date('', '', '', false),
  41. get_the_time(),
  42. get_the_category_list(', '),
  43. get_permalink(),
  44. wp_specialchars(get_the_title(), 'double'),
  45. comments_rss() ) ?>
  46.  
  47. </small></div>
  48.  
  49. <?php edit_post_link(__('Edit', ''), "- <span class=\"edit-link\">", "</span>"); ?>
  50.  
  51. </div>
  52.  
  53.  
  54.  
  55. <?php comments_template(); ?>
  56.  
  57.  
  58.  
  59. <?php endwhile; else: ?>
  60.  
  61.  
  62.  
  63. <p>Sorry, no posts matched your criteria.</p>
  64.  
  65.  
  66.  
  67. <?php endif; ?>
  68.  
  69. </div><!-- .post -->
  70.  
  71. </div>
  72.  
  73. </div><!-- #maincol -->
  74.  
  75. </div></div><!-- #content -->
  76.  
  77. <?php include (TEMPLATEPATH . '/extra.php'); ?>
  78.  
  79. <?php get_footer(); ?>
  80.  
  81. <div style=”display:block;float:left;margin: 0px 10px 0px 0px;”>
  82. <script type="text/javascript"><!--
  83. google_ad_client = "ca-pub-9368072792513601";
  84. /* Get2theLeagueupper left hand corner */
  85. google_ad_slot = "6508423363";
  86. google_ad_width = 250;
  87. google_ad_height = 250;
  88. //-->
  89. </script>
  90. <script type="text/javascript"
  91. src="http://pagead2.googlesyndication.com/pagead/show_ads.js">
  92. </script>
  93. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement