barebones/index.php

37 lines
947 B
PHP
Raw Normal View History

2012-08-30 22:17:00 +02:00
<?php get_header(); ?>
<div class="content container">
2012-12-20 22:05:46 +01:00
<div class="main" role="main">
2012-08-30 22:17:00 +02:00
<?php while ( have_posts() ) : the_post(); ?>
2012-11-14 00:53:02 +01:00
<article <?php post_class(); ?>>
2012-12-20 22:05:46 +01:00
<header role="heading">
2012-11-14 00:53:02 +01:00
<h3 class="title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
2013-08-06 10:25:44 +02:00
<p class="date"><time pubDate datetime="<?php echo $post->post_date; ?>"><?php echo human_time_diff( strtotime( $post->post_date ) ); ?></time></p>
2012-11-14 00:53:02 +01:00
<p class="comments"><?php comments_popup_link( 'No comments yet', '1 comment', '% comments' ); ?></p>
</header>
<?php the_content( __( 'Read More' ) ); ?>
</article>
<?php endwhile; ?>
2012-05-29 23:42:46 +02:00
2012-11-14 00:53:02 +01:00
<div class="pagination">
<div class="alignleft"><?php previous_posts_link( 'Previous Entries' ) ?></div>
<div class="alignright"><?php next_posts_link( 'Next Entries','' ) ?></div>
</div>
</div>
<aside class="sidebar">
<?php get_sidebar(); ?>
</aside>
</div>
2012-08-30 22:17:00 +02:00
2013-08-06 10:25:44 +02:00
<?php get_footer(); ?>