File: D:/HostingSpaces/KLeeuwen/old.samenbouwen.in/wwwroot/wp-content/themes/samenbouwenin/index.php
<?php get_header(); ?>
<style type="text/css">
.bluebox{ background-color: #2E222C; padding: 0px;}
.bluebox * { color: #eeeeee; }
.bluebox .wbtn { text-align: center; background-color: #ef6530; padding-left: 0px;}
.bluebox .wbtn a{ color: #eeeeee; font-size: 18px;}
</style>
<div class="aftermenubar"></div>
<?php while ( have_posts() ) : the_post();
the_breadcrumb();
break;
endwhile;
rewind_posts();
?>
<h1>NIEUWS</h1>
<div class="blueline"></div>
<div class="row-fluid">
<?php /* The Loop — with comments! */ ?>
<?php while ( have_posts() ) : the_post() ?>
<?php /* Create an HTML5 article section with a unique ID thanks to the_ID() and semantic classes with post_class() */ ?>
<div class="span4 bluebox">
<a href="<?php the_permalink(); ?>">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?> style="margin: 20px">
<header class="entry-header">
<div class="title"><h3><?php the_title(); ?></h3></div>
<?php if ( 'post' == get_post_type() ) : // Only display post date and author if this is a Post, not a Page. ?>
<?php endif; ?>
</header><!-- .entry-header -->
<?php if ( is_search() ) : // Only display Excerpts on Search results pages ?>
<div class="entry-summary">
<?php the_excerpt(); ?>
</div><!-- .entry-summary -->
<?php else : ?>
<div class="entry-content" style="padding-left: 5px;">
<?php the_content( __( 'Continue reading <span class="meta-nav">→</span>', 'shape' ) ); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'shape' ), 'after' => '</div>' ) ); ?>
</div><!-- .entry-content -->
<?php endif; ?>
<?php /* Show the post's tags, categories, and a comment link. */ ?>
<footer class="entry-meta">
<?php if ( 'post' == get_post_type() ) : // Hide category and tag text for Pages in Search results ?>
<?php
/* translators: used between list items, there is a space after the comma */
$categories_list = get_the_category_list( __( ', ', 'shape' ) );
if ( $categories_list && shape_categorized_blog() ) :
?>
<span class="cat-links">
<?php printf( __( 'Posted in %1$s', 'shape' ), $categories_list ); ?>
</span>
<?php endif; // End if categories ?>
<!--
<?php
/* translators: used between list items, there is a space after the comma */
$tags_list = get_the_tag_list( '', __( ', ', 'shape' ) );
if ( $tags_list ) :
?>
<span class="sep"> | </span>
<span class="tag-links">
<?php printf( __( 'Tagged %1$s', 'shape' ), $tags_list ); ?>
</span>
<?php endif; // End if $tags_list ?>
<?php endif; // End if 'post' == get_post_type() ?>
<?php if ( ! post_password_required() && ( comments_open() || '0' != get_comments_number() ) ) : ?>
<span class="sep"> | </span>
<span class="comments-link"><?php comments_popup_link( __( 'Leave a comment', 'shape' ), __( '1 Comment', 'shape' ), __( '% Comments', 'shape' ) ); ?></span>
<?php endif; ?>
<?php edit_post_link( __( 'Edit', 'shape' ), '<span class="sep"> | </span><span class="edit-link">', '</span>' ); ?>
-->
<div class="wbtn"><a href="<?php the_permalink(); ?>">Lees meer</a></div>
</footer> <!-- .entry-meta -->
<?php /* Close up the article and end the loop. */ ?>
</a>
</div>
</article><!-- #post-<?php the_ID(); ?> -->
<?php endwhile; ?>
</div>
<?php get_footer(); ?>