Skip to content

Instantly share code, notes, and snippets.

@daveloodts
Created August 30, 2016 07:56
Show Gist options
  • Save daveloodts/490d756fdf1039ff4d1005d62c0a6623 to your computer and use it in GitHub Desktop.
Save daveloodts/490d756fdf1039ff4d1005d62c0a6623 to your computer and use it in GitHub Desktop.
<?php
$query_args = array( 'post_type' => 'post', 'paged' => $paged );
query_posts( $query_args );
?>
<h1>Nieuws</h1>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="row archivenewsitem" role="article">
<div class="small-2 large-2 columns">
<a href="<?php the_permalink() ?>"><?php the_post_thumbnail(); ?></a>
</div>
<div class="small-10 large-10 columns">
<h3><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></h3>
<?php get_template_part( 'parts/content', 'byline' ); ?>
<div class="entry-content show-for-medium"><?php the_excerpt('<button class="tiny">Lees verder ...</button>'); ?></div>
</div>
</div>
<?php endwhile; endif; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment