-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathblog.html
More file actions
37 lines (36 loc) · 1003 Bytes
/
blog.html
File metadata and controls
37 lines (36 loc) · 1003 Bytes
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
---
layout: default
title: Jaswig’s Blog | Jaswig
label: Blog
permalink: /blog/
position: 4
description: Articles and reviews about standing desks, height adjustable tables, ergonomic and sustainable products.
---
<div class="blog container">
<div class="row">
<div class="col-xs-12">
<h1 class="large">Blog</h1>
</div>
</div>
<div class="row">
{% for post in site.posts %}
<div class="col-xs-12 col-sm-6 col-md-4">
<div class="blogpost">
{% if post.thumbnail %}
<a href="{{ post.url | prepend: site.baseurl }}">
<img src="{{ post.thumbnail }}" alt="">
</a>
{% endif %}
<div class="blogpost-inner">
<h3 class="blogpost-inner-title"><a href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h3>
<p>
{% if post.excerpt %}
{{ post.excerpt }}
{% endif %}
</p>
</div>
</div>
</div>
{% endfor %}
</div>
</div>