forked from bairblog/bairblog.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
executable file
·35 lines (30 loc) · 840 Bytes
/
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
---
layout: default
---
<div class="home">
<div class="posts">
{% for post in paginator.posts %}
{% if post.visible %}
<div class="post">
<h1 class="h1 post-title">
<center>
<a href="{{ post.url | prepend: site.baseurl }}" class="post-link">{{ post.title }}</a>
</center>
</h1>
<p class="post-summary">
<h5><center>
<span class="post-meta">{{ post.author }}</span>
<span class="post-meta">{{ post.date | date: site.date_format }}</span>
</center></h5>
<br>
{% if post.cover %} {{ post.cover }} {% endif %}
{{ post.excerpt }}
<a href="{{ post.url | prepend: site.baseurl }}">Continue</a>
</p>
</div>
{% endif %}
{% endfor %}
</div>
{% include pagination.html %}
</div>