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-03-31 17:19:42 +02:00
|
|
|
<div class="container">
|
2012-08-30 22:17:00 +02:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<main class="main" role="main">
|
2012-08-30 22:17:00 +02:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<article <?php post_class(); ?>>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<header role="heading">
|
|
|
|
<h3 class="post__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
|
|
|
|
<p class="post__date"><time><?php echo human_time_diff( strtotime( $post->post_date ) ) . ' ' . __( 'ago' ); ?></time></p>
|
|
|
|
<p class="post__comments"><?php comments_popup_link( __( 'No comments yet' ), __( '1 comment' ), __( '% comments' ) ); ?></p>
|
|
|
|
</header>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<?php the_content( __( 'Read More' ) ); ?>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
</article>
|
2012-05-29 23:42:46 +02:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<?php endwhile; ?>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<?php
|
|
|
|
echo paginate_links(array(
|
|
|
|
'base' => str_replace( 99999999, '%#%', esc_url( get_pagenum_link( 99999999 ) ) ),
|
|
|
|
'format' => '?paged=%#%',
|
|
|
|
'current' => max( 1, get_query_var('paged') ),
|
2014-11-26 14:22:30 +01:00
|
|
|
'total' => $wp_query->max_num_pages
|
2014-03-31 17:19:42 +02:00
|
|
|
));
|
|
|
|
?>
|
2014-01-30 12:26:35 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
</main>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
<aside class="sidebar">
|
|
|
|
<?php get_sidebar(); ?>
|
|
|
|
</aside>
|
2014-01-30 12:26:35 +01:00
|
|
|
|
2014-03-31 17:19:42 +02:00
|
|
|
</div>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
|
|
|
</div>
|
2012-08-30 22:17:00 +02:00
|
|
|
|
2014-02-03 16:33:44 +01:00
|
|
|
<?php get_footer(); ?>
|