-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
39 lines (33 loc) · 1.07 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
---
layout: default
title: dustingetz
---
<div class="row">
<div class="span12">
<div class="hero-unit" style="background-image: url(/images/dustin-desk-caffeine-hero.jpg);background-position:bottom;">
<h1 style="color:#fff; float:right;"><br>Dustin Getz's blog</h1>
<p style="color:#fff;float:right;">blogs from my path to becoming a better software engineer</p>
<br><br><br><br><br><br><br><br>
</div>
</div>
</div>
<!--
<div class="row">
<div class="span8 offset2">
<ul class="unstyled">
{% for post in site.posts limit:1000 %}
<li><span>{{ post.date | date_to_string }}</span> » <a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
</div>
-->
<div class="row">
<div class="span12">
<dl class="dl-horizontal">
{% for post in site.posts limit:1000 %}
<dt style="font-weight: normal;">{{ post.date | date_to_string }}</dt><dd><a href="{{ post.url }}">{{ post.title }}</a></dd>
{% endfor %}
</ul>
</div>
</div>