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