-
Notifications
You must be signed in to change notification settings - Fork 28
/
blog.html
28 lines (23 loc) · 890 Bytes
/
blog.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
---
layout: blog_index
title: Blog
permalink: /blog/
category_name: blog
---
<article class="container px-2 mx-auto mb4" itemscope itemtype="http://schema.org/BlogPosting">
<h1 class="h0 col-9 sm-width-full py-4 mt-3 inline-block" itemprop="name headline">{{ page.title }}</h1>
<div class="col-4 sm-width-full mt-1 border-top-thin ">
<p class="mb-3 py-2 bold h4"><time datetime="{{ page.date | date_to_xmlschema }}" itemprop="datePublished">{{ page.date | date: "%b %-d, %Y" }}</time></p>
</div>
<div class="prose" itemprop="articleBody">
{{ content }}
</div>
<div class="container mx-auto px-2 py-4">
{% for post in site.blog limit: 3 %}
{% include blog_post_block.html %}
{% endfor %}
</div>
</article>
<div class="container mx-auto px-2 py-2 clearfix">
{% include previous-next_has-categories.html %}
</div>