]> git.openstreetmap.org Git - stateofthemap.git/blob - index.php
Aerodrome 1.0.5
[stateofthemap.git] / index.php
1 <?php
2 get_header();
3 ?>
4
5
6 <?php if (have_posts()) : while (have_posts()) : the_post(); ?>
7
8
9
10 <div class="datecomrap">
11          <div class="date">
12          <?php the_time('M'); ?><br />
13          <span style="font-size:2em; font-weight:bold;"><?php the_time('d'); ?></span><br />
14          <?php the_time('Y'); ?>
15          </div><!-- end date -->
16
17
18          <!-- if you don't want the comment count left of the post, erase from here ... -->
19          <div class="commy">
20 <?php comments_popup_link( '0', '1', '%', 'comments-link', '-'); ?>    
21          </div><!-- end commy -->
22          <!-- to here -->
23
24
25 </div><!-- end datecomrap -->
26
27
28
29      <div class="storywrap">
30
31 <div class="post" id="post-<?php the_ID(); ?>">
32          <h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h3>
33
34         <div class="storycontent">
35                 <?php the_content(__('(more...)')); ?>
36         </div><!-- end storycontent -->
37
38         <div class="meta">
39
40 Written by <?php the_author() ?><?php _e(" in:"); ?> <?php the_category(',') ?> | <?php the_tags(__('Tags: '), ', ', ' '); ?><?php edit_post_link(__('Edit This')); ?>
41 <?php wp_link_pages(); ?><br />
42
43         </div><!-- end meta -->
44
45
46 <?php comments_template(); ?>
47
48      </div><!-- end storywrap -->
49
50 </div><!-- end post -->
51
52 <?php endwhile; else: ?>
53 <p style="margin:100px 0 0 100px; font-weight:bold;"><?php _e('Sorry, no posts matched your criteria.'); ?></p>
54 <?php endif; ?>
55
56 <div class="navlink">
57 <?php posts_nav_link(' &#8212; ', __('&laquo; Newer Posts'), __('Older Posts &raquo;')); ?>
58 </div><!-- end navlink -->
59
60
61 <?php get_footer(); ?>