-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathindex.html
88 lines (72 loc) · 2.08 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
---
layout: default
---
<script src="{{ site.baseurl }}/assets/js/responsive-equal-width.js"></script>
{% if site.posts.size == 0 %}
<h2>No post found</h2>
{% endif %}
<div style="text-align: center;border: thin dashed gray;font-style: italic;color: #6E3139;">
{% include_relative announcement.html %}
</div>
<div class="posts">
<section class="main">
{% for post in paginator.posts %}
{% if post.layout != "page" %}
<div class="col-3 col-s-6">
<article class="post">
<div class="container-div">
<a href="{{ site.baseurl }}{{ post.url }}"><img src="{{ post.teaser }}" alt="{{ post.title }}" style="width:100%;"></a>
</div>
<h2>
<a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }}</a>
</h2>
<div>
<!-- <span class="date">
{{ post.date | date: "%Y-%m-%d" }}
</span> -->
<!-- Look the author details up from the site config. -->
{% assign author = site.data.authors[post.author] %}
{% if author %}
<span>
<!-- Personal Info. -->
作者: <a href="{{ author.web }}">{{ author.name }}</a>
</span>
{% endif %}
<ul class="tag">
{% for tag in post.tags %}
<li>
<a href="{{ site.url }}{{ site.baseurl }}/tags#{{ tag }}">
{{ tag }}
</a>
</li>
{% endfor %}
</ul>
</div>
<!--
<div class="entry">
{{ post.excerpt }}
</div>
-->
</article>
</div>
{% endif %}
{% endfor %}
</section>
</div>
<div class="pagination">
{% if paginator.previous_page %}
<span class="prev">
<a href="{{ site.baseurl }}{{ paginator.previous_page_path }}" class="prev">
 Previous
</a>
</span>
{% endif %}
{% if paginator.next_page %}
<span class="next">
<a href="{{ site.baseurl}}{{ paginator.next_page_path }}" class="next">
Next 
</a>
</span>
{% endif %}
</div>
{% include boilerplate.html %}