forked from duffleit/duffleit.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
35 lines (33 loc) · 921 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
29
30
31
32
33
34
35
---
layout: page
title: About
---
<section class="blog-overview">
<div class="container">
<div class="row">
<div class="col-12">
<h1>Blog</h1>
<div class="top-text">
I'm blogging about a couple of things, but most of them, in one way or
another, are <b>related to software engineering</b>:
</div>
<div class="row">
<div class="col-12">
<ul class="posts">
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
<small>
<time datetime="{{ post.date | date_to_xmlschema }}">
<span>{{ post.date | date_to_string }}</span>
</time>
</small>
</li>
{% endfor %}
</ul>
</div>
</div>
</div>
</div>
</div>
</section>