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
|
|
|
|
2016-08-09 14:22:26 +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-19 12:54:53 +02:00
|
|
|
<header class="post__header" role="heading">
|
2015-10-20 14:21:57 +02:00
|
|
|
<h3 class="post__title"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3>
|
2016-08-09 14:22:26 +02:00
|
|
|
<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>
|
2015-10-14 12:10:55 +02:00
|
|
|
</header>
|
2012-11-14 00:53:02 +01:00
|
|
|
|
2016-08-09 14:22:26 +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
|
|
|
|
2016-08-09 14:22:26 +02:00
|
|
|
<?php get_footer(); ?>
|