mirror of
https://github.com/codeninjasuk/showcase.git
synced 2024-11-25 00:48:01 -05:00
28 lines
No EOL
604 B
HTML
28 lines
No EOL
604 B
HTML
---
|
|
layout: default
|
|
---
|
|
<!-- Post Featured Image -->
|
|
{% if page.image %}
|
|
<div class="text-center mx-auto mb-5">
|
|
<img class="featured-image text-center mx-auto rounded" src="{{ site.baseurl }}/{{ page.image }}" alt="{{ page.title }}">
|
|
</div>
|
|
{% endif %}
|
|
<!-- End Featured Image -->
|
|
|
|
<div class="col-lg-8 mt-5 mx-auto">
|
|
|
|
<div class="mainheading">
|
|
<h1 class="posttitle">{{ page.title }}</h1>
|
|
</div>
|
|
|
|
<div class="article-post serif-font">
|
|
{{content}}
|
|
</div>
|
|
|
|
{% if page.comments == true %}
|
|
<div id="comments">
|
|
{% include disqus.html %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
</div> |