-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
22 lines (22 loc) · 913 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
---
layout: default
full_title: 海绵梦幻乐园
---
<div id="posts" class="container">
<div class="row">{% for post in site.categories["ueo"] %}
<section class="col-md-12">
<div class="post big">
<div class="row">
<div class="col-md-6 media"><img class="img-fluid" src="/images/{{ post.type-en }}/{{ post.image }}.jpg" alt="{{ post.title }}"></div>
<div class="col-md-6 caption">
<span class="post-title">{{ post.title }}</span>
<span class="post-date">{{ post.date | date:"%Y年%m月%d日" }}</span>
<span class="post-tag">{{ post.keywords }}</span>
<p class="post-description">{{ post.description }}</p>
<a class="btn btn-lg btn-success" href="{{ site.url }}{{ post.url }}"><i class="fa fa-search"></i> 阅读全文</a>
</div>
</div>
</div>
</section>{% endfor %}
</div>
</div>