Initial commit

This commit is contained in:
John O'Nolan 2018-12-31 00:56:05 +00:00
parent 92d12e1072
commit 31be8a2291
31 changed files with 7372 additions and 2 deletions

11
partials/post-card.hbs Normal file
View file

@ -0,0 +1,11 @@
{{!--
Re-usable card for linking to posts
--}}
<article class="post-card {{post_class}} {{#if feature_image}}with-image" style="background-image: url({{img_url feature_image size="l"}}){{else}}no-image{{/if}}">
<a class="post-card-link" href="{{url}}">
<div class="post-card-content">
<h2 class="post-card-title">{{title}}</h2>
</div>
</a>
</article>