Removed concept of partials from Casper. For now.

This commit is contained in:
John O'Nolan
2013-08-10 14:36:03 +02:00
committed by Hannah Wolfe
parent 820b222f8e
commit 9ca4564cb2
4 changed files with 25 additions and 31 deletions

View File

@ -1,6 +1,24 @@
{{!< default}}
<section class="content">
{{#post}}
{{> full-post}}
<article class="post type-post status-publish format-standard hentry">
{{#if image}}
<figure class="post-thumb">
<img width="550" height="250" src="/content/images/{{image}}" class="attachment-post-thumbnail wp-post-image" alt="ghostpost">
</figure>
{{/if}}
<div class="wrap">
<header>
<h2 class="entry-title h1"><a href="/{{slug}}" rel="bookmark">{{title}}</a></h2>
<span class="entry-meta">Published on <time class="updated" datetime="{{dateFormat published_at format='YYYY-MM-DD'}}">{{dateFormat published_at format='DD MMMM YYYY'}}</time></span>
</header>
<section class="entry-content">
{{content}}
</section>
</div>
</article>
{{/post}}
</section>