-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
62 lines (51 loc) · 1.46 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
---
layout: post-index
---
{% for post in paginator.posts %}
<article>
<!-- POST FEATURED IMAGE -->
<div class="featured-image">
<img src="{{ post.featured-image}}" style="width:100%">
</div>
<!-- POST TITLE -->
<header>
<h1 class="entry-title">
<a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.title }}</a>
</h1>
<h3 class="entry-subtitle">
<a href="{{ site.url }}{{ post.url }}" rel="bookmark" title="{{ post.title }}" itemprop="url">{{ post.subtitle }}</a>
</h3>
</header>
<!-- POST BYLINE -->
<div class="post-byline">
{{ post.author }}
</div>
<!-- POST DATE -->
<div class="post-date">
<span class="entry-date date published updated">
<time datetime="{{ post.date | date_to_xmlschema }}">
<a href="{{ site.url }}{{ post.url }}">{{ post.date | date: "%B %d, %Y" }}</a>
</time>
</span>
</div>
<!-- POST CONTENT -->
<hr>
<div class="entry-content">
{{ post.excerpt }}
</div>
<!-- POST TAGS -->
<hr>
<div class="inline-tags">
<span>
{% for tag in post.tags %}
<a href="/tags/#{{tag}}">#{{ tag }} </a>
{% endfor %}
</span>
</div>
</article>
{% endfor %}
<div class="pagination">
<center>
{% include pagination.html %}
</center>
</div>