-
Notifications
You must be signed in to change notification settings - Fork 3
/
index.html
41 lines (40 loc) · 1.18 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
38
39
40
41
---
layout: default
title: Mat Schaffer
---
<div class="row">
<div class="col-lg-8">
<h2>Recent blog posts</h2>
{% for post in site.posts limit:5 %}
<a class="block-link" href="{{ post.url }}">
<blockquote class="linkable">
{{ post.abstract | xml_escape }}
<small>
{{ post.date | date_to_string }}
<span class="fake-link">{{ post.title | xml_escape }}</span>
<i class="fake-link icon-circle-arrow-right"></i>
</small>
</blockquote>
</a>
{% endfor %}
<p><a href="/posts">More blog posts...</a></p>
</div>
<div class="col-lg-4">
<div class="about-me thumbnail">
<img src="/ico/matschaffer.png" height="350" width="350" />
<div class="caption">
<h3>Developer at scale</h3>
<p>
From web development to large scale cloud operations. I help teams
work better with an focus on automation, reliable infrastructure, and
sound software development practices.
</p>
<a
class="btn btn-primary"
href="mailto:[email protected]?subject=Work+opportunity"
>Contact for work</a
>
</div>
</div>
</div>
</div>