-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
53 lines (44 loc) · 1.44 KB
/
index.html
File metadata and controls
53 lines (44 loc) · 1.44 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
---
layout: default
---
<div class="home">
<h1 class="page-heading">Posts</h1>
{% for post in paginator.posts %}
<div class="col-xs-12">
{% if post.url %}
<h2><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h2>
{% else %}
<h2>{{ post.title }}</h2>
{% endif %}
</div>
<div class="col-xs-8">
<p class="post-meta">
{% if post.date %}
<span class="label label-info">
<span class="octicon octicon-calendar"></span>
<time datetime="{{ post.date | date_to_xmlschema }}" itemprop="datePublished">
{% assign date_format = site.minima.date_format | default: "%b %-d, %Y" %}
{{ post.date | date: date_format }}
</time>
</span>
{% if post.tags %} {% endif %}
{% endif %}
{% for tag in post.categories %}
<span class="octicon octicon-tag"></span> <span class="label label-default">
<i class="fa fa-fw fa-tag"></i>
{{ tag }}
</span>
{% unless forloop.last %} {% endunless %}
{% endfor %}
</p>
{{ post.excerpt }}
</div>
<div class="clearfix"></div>
{% unless forloop.last %}
<div class="col-xs-12"><hr /></div>
{% endunless %}
{% endfor %}
<!-- Pagination links -->
{% include nav_paginator.html %}
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | relative_url }}">via RSS</a></p>
</div>