forked from barryclark/jekyll-now
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
32 lines (25 loc) · 712 Bytes
/
Copy pathindex.html
File metadata and controls
32 lines (25 loc) · 712 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
---
layout: default
---
<div class="posts">
{% for post in site.posts %}
<article class="post">
<h1><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a></h1>
<div class="entry">
{% if post.content contains site.excerpt_separator %}
{{ post.excerpt }}
<a href="{{ site.baseurl }}{{ post.url }}" class="read-more">Read More</a>
{% else %}
{{ post.content }}
{% endif %}
</div>
<div class="tags">
{% for tag in post.tags %}
<div class="tag {{tag}}">{{tag}}</div>
{% endfor %}
</div>
</article>
{% endfor %}
</div>
{% include tag-script.html %}
{% include tag-pane.html %}