-
Notifications
You must be signed in to change notification settings - Fork 0
/
blog.html
36 lines (33 loc) · 951 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
36
---
layout: default
permalink: /blog
title: Dawid Mazewski Blog
bodyclass: blog
description: Weekly logs and tutorials.
---
<div class="row">
<h1 class="heading">Blog</h1>
<p class="description">{{page.description}}</p>
<div class="blog-posts">
{% for post in site.posts %}
<article class="post-entry">
<h2 class="heading"><a href="{{post.url}}">{{post.title}}</a></h2>
<div class="post-meta">
<time class="date">{{ post.date | date: '%B %d, %Y' }}</time>
<ul class="post-categories">
{% for cat in post.categories %}
<li>{{cat}}</li>
{% endfor %}
</ul>
<ul class="post-tags">
{% for tag in post.tags %}
<li>#{{tag}}</li>
{% endfor %}
</ul>
</div>
<p class="post-excerpt">{{post.description}}</p>
<a class="read-more" href="{{post.url}}">read more</a>
</article>
{% endfor %}
</div>
</div>