-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
46 lines (41 loc) · 1.13 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
42
43
44
45
46
---
layout: default
---
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<div class="header d-flex">
<div class="name">Austen Ito</div>
<a target="_blank" href="https://github.com/austenito">Github</a>
<span class="seperator">-</span>
<a target="_blank" href="https://twitter.com/austenito">Twitter</a>
</div>
</div>
</div>
<div class="row header-separator">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<hr>
</div>
</div>
<div class="row">
<div class="col-sm-2"></div>
<div class="col-sm-8">
<div class="content">
I like programming, wine, poptarts, french fries, and le français. You'll most likely find me practicing mon
français below.
</div>
<div class="posts">
<ul>
{% for post in site.posts %}
<li class="posts--item">
<a href="{{ post.url }}">{{ post.title }}</a>
<span class="posts--date">{{ post.date | date: "%Y/%m/%d" }}</span>
</li>
{% endfor %}
</ul>
</div>
</div>
<div class="col-sm-2"></div>
</div>
</div>