Created
November 26, 2013 15:31
-
-
Save ssteinker/7660440 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<article <?php post_class(); ?>> | |
<div class="row"> | |
<div class="col-xs-3"> | |
<?php | |
if (get_the_post_thumbnail()) { | |
echo get_the_post_thumbnail($post_id, 'news-thumbnail', array('class' => 'img-responsive')); | |
} else { | |
echo 'kein thumbnail vorhanden'; | |
} | |
?> | |
</div> | |
<div class="col-xs-9"> | |
<header> | |
<h1 class="entry-title"> | |
<?php the_title(); ?> | |
</h1> | |
</header> | |
<div class="entry-summary"> | |
<?php the_content(); ?> | |
</div> | |
</div> | |
</div> | |
</article> | |
<hr /> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment