-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
37 lines (30 loc) · 921 Bytes
/
index.html
File metadata and controls
37 lines (30 loc) · 921 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
31
32
33
34
35
36
37
---
layout: default
---
<div class="home">
<div class="posts">
{% for post in paginator.posts %}
<div class="post post-link">
<header>
<p class='category'>
{% for category in post.categories %}
<a href="/categories#{{ category }}">{{ category }}</a>
{% endfor %}
</p>
<span class="post-meta">
{{ post.date | date: "%B %-d, %Y" }} by
<a href="http://twitter.com/{{ post.author.twitter }}">{{ post.author.name }}.</a>
</span>
<span data-clipboard-text="{{ post.url | prepend: site.url }}" class="permalink">
Copy the permalink
</span>
</header>
<h3 class="h2 post-title">{{ post.title }}</h3>
<p class="post-summary">
{{ post.content }}
</p>
</div>
{% endfor %}
</div>
{% include pagination.html %}
</div>