-
Notifications
You must be signed in to change notification settings - Fork 2
/
blog.html
42 lines (35 loc) · 1.02 KB
/
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
---
layout: default
title: Blog
permalink: /blog/
description: Read Owen Williams' blog for insights on freelancing, coding and more.
image: "/images/card.png"
---
<div class="blog container my-5">
<div class="row">
<div class="col-lg-6">
<h1 class="page-heading">Latest Posts</h1>
</div>
</div>
<div class="row">
<div class="col-lg-7">
<div class="post-list">
{% for post in site.posts %}
<div class="post">
<span class="post-meta">{{ post.date | date: "%b %-d, %Y" }}</span>
<h2>
<a class="post-link" href="{{ post.url | relative_url }}">{{ post.title | escape }}</a>
</h2>
<p>{{ post.description | escape }}</p>
</div>
{% endfor %}
</div>
</div>
</div>
<div class="row mt-5">
<div class="col-lg-6">
<h6 class="font-weight-bold">Want more?</h6>
<p class="rss-subscribe">Subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
</div>
</div>
</div>