-
Notifications
You must be signed in to change notification settings - Fork 89
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (28 loc) · 730 Bytes
/
index.html
File metadata and controls
30 lines (28 loc) · 730 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
25
26
27
28
29
30
---
layout: default
title: Home
id: posts
twitter: true
twitter_type: summary_large_image
description: Visualizations by Jim Vallandingham.
img: http://vallandingham.me/images/vis/vis_card.png
---
<div class="main-body">
<h2>Writing</h2>
{% for post in site.categories.tutorial %}
<div class="row posts">
<div class="ten columns">
<a href="{{ post.url }}">{{ post.title }}</a>
</div>
<div class="two columns post-date">
<span>{{ post.date | date: "%Y-%m-%d"}}</span>
</div>
</div>
{% endfor %}
<h2>Talks</h2>
{% for post in site.categories.talk %}
<div class="row posts">
<div class="ten columns"><a href="{{ post.url }}">{{ post.title }}</a></div>
</div>
{% endfor %}
</div>