43 lines
1.2 KiB
HTML
Raw Normal View History

2021-01-13 18:58:23 -05:00
---
layout: default
2022-07-26 21:59:19 -04:00
pagination:
enabled: false
2021-01-13 18:58:23 -05:00
---
{% comment %}
2022-07-26 21:59:19 -04:00
This layout is the single page of a blog post.
2021-01-13 18:58:23 -05:00
{% endcomment %}
<section id="main" class="wrapper style1">
<div class="inner">
2022-07-26 21:59:19 -04:00
<!-- Shopping Cart -->
<section class="row product-cart journal">
<div class="col-12">
<a href="{{site.url}}/blog"><h5 class="button back">< Go Back</h5></a>
</div>
</section>
2021-01-13 18:58:23 -05:00
2022-07-26 21:59:19 -04:00
<!-- Title -->
<header class="major special journal">
<div class="hero"> <img class="image fit" src="{{ page.banner_image }}" alt="{{ page.banner_image_alt }}"> </div>
<h1>{{ page.title }}</h1>
<p>{{ page.sub_title }}</p>
</header>
2021-01-13 18:58:23 -05:00
<!-- Content -->
2022-07-26 21:59:19 -04:00
<div class="content">
{{ content }}
{% assign author = site.data.authors[page.author] %}
{%- include author_card.html -%}
2021-01-13 18:58:23 -05:00
2022-07-26 21:59:19 -04:00
<!-- Related posts collection -->
<section class="row related-items">
<div class="col-12">
<h3>More Posts</h3>
</div>
{%- assign related_posts = site.posts | where_exp:"post", "post.url != page.url" | sample:3 -%}
{%- include product_related.html -%}
</section>
</div>
</div>
2021-01-13 18:58:23 -05:00
</section>