-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex_alternate.html
47 lines (40 loc) · 1.39 KB
/
index_alternate.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
37
38
39
40
41
42
43
44
45
46
47
---
layout: default
published: false
---
<div class="home">
<!--h1 class="post-title">Posts</h1-->
<ul class="post-list">
{% for post in site.posts %}
<li>
<h2><a class="post-link" style="margin-bottom:0;" href="{{ post.url | prepend: site.baseurl }}">{{ post.title }}</a></h2>
<span class="post-meta">
<span style="display:block;">{{ post.date | date: "%b %-d, %Y" }}</span>
{% if post.categories %}
<i class="fa fa-folder-open" title="categories"></i>
<ul style="list-style-type:none; display:inline-block; margin:0;">
{% for c in post.categories %}
<li style="display: inline;">
<a href="/{{ c }}">{{ c }}</a>
</li>
{% endfor %}
</ul>
{% endif %}
{% if post.tags %}
<div>
<i class="fa fa-tags" title="tags"></i>
<ul style="list-style-type:none; display:inline-block; margin:0;">
{% for t in post.tags %}
<li style="display: inline;">
<a href="/{{ t }}">{{ t }}</a>
</li>
{% endfor %}
</ul>
</div>
{% endif %}
</span>
</li>
{% endfor %}
</ul>
<p class="rss-subscribe">subscribe <a href="{{ "/feed.xml" | prepend: site.baseurl }}">via RSS</a></p>
</div>