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