-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblog.html
36 lines (36 loc) · 1.1 KB
/
blog.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
---
layout: default
permalink: blog/
title: tech stuff and real talk
---
<div class="container" id="blog">
<div class="row">
<div class="col-sm-12">
<h1>tech stuff and real talk</h1>
<br/>
<ul>
{% for post in site.posts %}
<li><a href="{{ post.url }}">{{ post.title }}</a> // {{ post.date | date_to_string }}</li>
{% endfor %}
</ul>
</div>
</div>
</div>
<div class="container" id="post-footer">
<div class="row">
<hr/>
<div class="col-sm-6" id="post-footer-left">
<ul>
<li><a href="{{ site.url }}">Portfolio & Resume</a></li>
</ul>
</div>
<div class="col-sm-6" id="post-footer-right">
<ul>
<li><a href="http://github.com/stroupaloop" target="_blank"><i class="fa fa-github fa-2x"></i></a></li>
<li><a href="http://twitter.com/stroupaloop" target="_blank"><i class="fa fa-twitter fa-2x"></i></a></li>
<li><a href="http://linkedin.com/in/andrewstroup" target="_blank"><i class="fa fa-linkedin fa-2x"></i></a></li>
<li><a href="http://instagram.com/asianfarmer" target="_blank"><i class="fa fa-instagram fa-2x"></i></a></li>
</ul>
</div>
</div>
</div>