Docker and Ghost CMS overhaul

This commit is contained in:
Marwolf
2018-08-18 01:10:09 -04:00
parent 399e5ea342
commit 4dd84332d5
105 changed files with 1289 additions and 337 deletions

View File

@@ -0,0 +1,39 @@
{{!< default}}
{{#post}}
<article class="{{post_class}}">
<header>
<div class="post meta">
<time datetime="{{date format="YYYY-MM-DDTHH:MM"}}">{{date format="DD MMM YYYY"}}</time>
<span class="post tags">{{tags prefix="in " separator=" "}}</span>
{{> post-author}}
<span class="post reading-time"> ~ <span></span> read.</span>
</div>
{{#if feature_image}}<img id="post-image" src="{{img_url feature_image}}" alt="{{title}}">{{/if}}
<h1 id="post-title">{{title}}</h1>
</header>
<div id="post-content" class="{{post_class}}">
{{content}}
</div>
<div id="disqus_thread"></div>
<div class="post related">
{{#prev_post}}
<a rel="prev" id="prev-btn" class="btn small square" href="{{url}}">← {{title}}</a>
{{/prev_post}}
{{#next_post}}
<a rel="next" id="next-btn" class="btn small square" href="{{url}}">{{title}} →</a>
{{/next_post}}
</div>
{{> comments}}
</article>
{{/post}}