-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
28 lines (23 loc) · 844 Bytes
/
index.html
File metadata and controls
28 lines (23 loc) · 844 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
---
layout: default
---
<div class="col-lg-10 col-lg-offset-2 col-sm-9 col-sm-offset-3">
<h1 style="padding-top:.5em; font-size:2em;"><span style="font-size:2em;">Hi.</span> I'm Zacharias Stankiewicz, I make applications for the web.</h1>
</div>
<div class="col-md-12">
{% for post in site.posts %}
<div class="row postrow">
<div class="col-lg-2 col-sm-3">
<h2 class="text-right postitem"><span class="small">{{ post.date | date: "%b %-d, %Y" }}</span></h2>
</div>
<div class="col-lg-10 col-sm-9">
<h2 class="postitem"> <a class="post-link frontpageitalic" href="{{ post.url | prepend: site.baseurl }}"> {{ post.title }}</a></h2>
{% if post.summary != null %}
<p style="font-size:.9em;"> {{ post.summary }} </p>
{% endif %}
</div>
</div>
{% endfor %}
</div>
</div>
</div>