-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathblog.html
More file actions
24 lines (23 loc) · 771 Bytes
/
blog.html
File metadata and controls
24 lines (23 loc) · 771 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
---
layout: main
title: Blog | ashleybot
description: Blog of Ashley Wilson, a recent graduate of Carnegie-Mellon's Masters of HCI program.
keywords: blog,ashley,wilson,ashleywilson,ashleygreerwilson,lexington,kentucky,ky
---
<div class="row">
<h1>Blog</h1>
</div>
<div class="row">
<div class="large-9 columns">
<ul class="posts">
{% for post in site.posts %}
{% unless post.categories contains 'portfolio' %}
<li><span>{{ post.date | date: "%d" }}</span> » <a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></li>
{% endunless %}
{% endfor %}
</ul>
</div>
<div class="large-3 columns">
<img style="width:100%;height:auto;" src="http://www.gravatar.com/avatar/fd5460bdc6504b7ba0f46b3512f4f36e?size=400" />
</div>
</div>