2012-08-30 22:17:00 +02:00
|
|
|
<?php get_header(); ?>
|
|
|
|
|
2015-04-13 13:07:11 +02:00
|
|
|
<main class="main" role="main">
|
2015-10-14 12:10:55 +02:00
|
|
|
<div class="container">
|
2012-08-30 22:17:00 +02:00
|
|
|
|
2015-10-14 12:10:55 +02:00
|
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2015-10-14 12:10:55 +02:00
|
|
|
<article <?php post_class(); ?>>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2015-10-14 12:10:55 +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
|
|
|
|
2015-10-14 12:10:55 +02:00
|
|
|
<?php the_content( __( 'Read More' ) ); ?>
|
2012-05-29 23:42:46 +02:00
|
|
|
|
2015-10-14 12:10:55 +02:00
|
|
|
</article>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2015-10-14 12:10:55 +02:00
|
|
|
<?php endwhile; ?>
|
2014-01-30 12:26:35 +01:00
|
|
|
|
2015-10-14 12:10:55 +02:00
|
|
|
</div>
|
2015-04-13 13:07:11 +02:00
|
|
|
</main>
|
2012-08-30 22:17:00 +02:00
|
|
|
|
2014-02-03 16:33:44 +01:00
|
|
|
<?php get_footer(); ?>
|