forked from waferbaby/usesthis
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterviews.html
More file actions
executable file
·22 lines (21 loc) · 819 Bytes
/
interviews.html
File metadata and controls
executable file
·22 lines (21 loc) · 819 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
---
layout: default
title: All of Hacking the University interviews
permalink: /interviews/index.html
---
<ul id='interviews'>
{% for post in site.posts %}
<li>
<figure>
<a href='http://{{post.slug}}.hackingtheuniversity.net/' title='View an interview with {{post.person}}.'><img src='/images/icons/{{post.slug}}.jpg' alt='{{post.person}}' width='80' height='80' class='icon'></a>
</figure>
<h2><a href='http://{{post.slug}}.hackingtheuniversity.net/' title='View an interview with {{post.person}}.'>{{post.person}}</a></h2>
<p class='summary'>{{post.summary}}</p>
<p class='details'>
Posted <time datetime='{{post.date | date: "%Y-%m-%d"}}'>{{post.date | date: "%b %d, %Y"}}</time> in
{% assign categories=post.categories %}
{% include categories.html %}
</p>
</li>
{% endfor %}
</ul>