-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent.php
29 lines (22 loc) · 1.02 KB
/
content.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<div class="row">
<div class="sixteen columns">
<div class="section half-bottom">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<h1 class="entry-title"><?php the_title(); ?></h1>
<p class="post-category"><?php the_category(', ') ?></p>
<p class="date"><a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>"><?php the_date(); ?></a></p>
<?php global $more; $more = 0; ?>
<?php the_content( __( 'Continue reading <span class="meta-nav">&raquo;</span>', 'airship' ) ); ?>
<?php wp_link_pages(); ?>
<!-- <?php trackback_rdf(); ?> -->
<?php the_tags('<ul class="tags"><li>Tags: </li><li>','‚ </li><li>','</li></ul>', 'airship'); ?>
</article><!-- #post-<?php the_ID(); ?> -->
</div>
</div>
<div class="sixteen columns">
<div class="post-links">
<div class="left"><?php previous_post_link(); ?></div>
<div class="right"><?php next_post_link(); ?></div>
</div>
</div>
</div>