Initial commit

This commit is contained in:
Lorenzo Dellacà
2020-08-10 19:03:30 +02:00
commit 1b10a2e2a7
53 changed files with 8401 additions and 0 deletions

23
page.hbs Normal file
View File

@@ -0,0 +1,23 @@
{{!< default}}
{{#post}}
<article class="gh-article {{post_class}}">
<header class="gh-header gh-canvas">
<h1 class="gh-title">{{title}}</h1>
{{#if custom_excerpt}}
<p class="gh-excerpt">{{custom_excerpt}}</p>
{{/if}}
{{#if feature_image}}
<img class="gh-feature-image" src="{{feature_image}}" alt="{{title}}" />
{{/if}}
</header>
<div class="gh-content gh-canvas">
{{content}}
</div>
</article>
{{/post}}