Created
March 21, 2014 12:54
-
-
Save tekshrek/9685539 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
<?php get_header() ?> | |
<main> | |
<?php if ( have_posts() ) { ?> | |
<?php the_post() ?> | |
<article itemprop="blogPosts" itemscope itemtype="http://schema.org/BlogPosting"> | |
<figure> | |
<?php the_post_thumbnail('medium', array('itemprop' => 'image') ) ?> | |
</figure> | |
<h2 itemprop="headline"> | |
<?php the_title() ?> | |
</h2> | |
<blockquote itemprop="description"> | |
<?php do_action('wpseo_the_desc') ?> | |
</blockquote> | |
<section itemprop="articleBody"> | |
<?php the_content('') ?> | |
</section> | |
<time itemprop="datePublished" content="<?php echo get_the_date('Y-m-d') ?>"> | |
<?php the_date('j. F Y') ?> | |
</time> | |
</article> | |
<?php } else { ?> | |
<h3> | |
Keine Einträge gefunden. | |
</h3> | |
<?php } ?> | |
</main> | |
<?php get_sidebar() ?> | |
<?php get_footer() ?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment