forked from minddust/minddust.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
37 lines (35 loc) · 1.05 KB
/
index.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
---
layout: default
---
<header>
<h1>
<a href="/" id="logo-md-home-link">
<div class="logo-md-home">
<div class="m-left"></div>
<div class="m-middle"></div>
<div class="m-right"></div>
<div class="d-outer"></div>
<div class="d-inner"></div>
</div>
</a>
</h1>
<h2 class="h5 text-xs-center">Hi, I’m Stephan. I’m a founder,<br>freelancer and sometimes I write code.</h2>
</header>
<div class="m-t-3">
{% if site.posts.size > 0 %}
<div class="list-group">
{% for post in site.posts limit: 10 %}
<a href="{{ post.url }}" class="list-group-item">
<h4 class="list-group-item-heading h6">{{ post.title }}
<small class="text-muted"> –
<time datetime="{{ post.date | date_to_xmlschema }}">{{ post.date | date: '%b. %d, %Y' }}</time>
</small>
</h4>
</a>
{% endfor %}
</div>
<p class="text-xs-right m-t-1 m-b-0"><a href="/blog/">more ➟</a></p>
{% else %}
<p>No posts found.</p>
{% endif %}
</div>