Skip to content

Instantly share code, notes, and snippets.

@tekshrek
Created March 21, 2014 12:54
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tekshrek/9685539 to your computer and use it in GitHub Desktop.
Save tekshrek/9685539 to your computer and use it in GitHub Desktop.
<?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