-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·36 lines (26 loc) · 1.45 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
---
layout: default
title: The Gently Mad
---
{% for post in site.posts %}
<div class="post {% if post.custom_type %}{{ post.custom_type }}{% endif %}">
{% if post.custom_type == 'post' %}
<p class="date">{{ post.date | date: "%B %e, %Y" }} <a href="http://www.instapaper.com/hello2?url=http:www.thegentlymad.com{{ post.url }}&title={{ page.title }}">Send to Instapaper</a></p>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
{{ post.content | truncatewords: 99 }}
{% elsif post.custom_type == 'quote' %}
<p class="date">{{ post.date | date: "%B %e, %Y" }}</p>
{{ post.content }}
<p class="cite">{{ post.cite }}</p>
{% elsif post.custom_type == 'link' %}
<p class="date">{{ post.date | date: "%B %e, %Y" }}</p>
<h2><a href="{{ post.custom_url }}">{{ post.title }}</a></h2>
{{ post.content }}
{% elsif post.custom_type == 'screencast' %}
<p class="date">{{ post.date | date: "%B %e, %Y" }} <a href="http://www.instapaper.com/hello2?url=http:www.thegentlymad.com{{ post.url }}&title={{ page.title }}">Send to Instapaper</a></p>
<h2><a href="{{ post.url }}">{{ post.title }}</a></h2>
<iframe src="http://player.vimeo.com/video/{{ post.vimeo }}" width="500" height="281" frameborder="0" webkitAllowFullScreen mozallowfullscreen allowFullScreen></iframe>
<p>{{ post.content }}</p>
{% endif %}
</div>
{% endfor %}