-
Notifications
You must be signed in to change notification settings - Fork 0
/
timeline.html
36 lines (31 loc) · 1.24 KB
/
timeline.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
---
layout: post
category: Info
title: 目录视图
date: 1970-01-01 00:00:00.000000000 +00:00
tags: Ethan, info
keywords: Ethan, ethan
excerpt: 博客时间线
---
<ol class="time-line">
<hr />
<!--置顶-->
{% for post in site.posts %}
{% if post.istop %}
<li>
<h1 class="time-line-title"><a href="{{ post.url }}" title="访问 {{ post.title }}">[置顶]{{ post.title }}</a></h1>
<div class="time-line-mate"><time datetime="{{post.date | date: date_to_xmlschema}}" class="post-list__meta--date date">{{ post.date | date: "%F"}}</time> • <span class="post-list__meta--tags tags">{{ post.category }}</span> </div>
</li>
{% endif %}
{% endfor %}
<!--置顶-->
{% for post in site.posts %}
{% if post.istop %}
{% else %}
<li>
<h1 class="time-line-title"><a href="{{ post.url }}" title="访问 {{ post.title }}">{{ post.title }}</a></h1>
<div class="time-line-mate"><time datetime="{{post.date | date: date_to_xmlschema}}" class="post-list__meta--date date">{{ post.date | date: "%F"}}</time> • <span class="post-list__meta--tags tags">{{ post.category }}</span></div>
</li>
{% endif %}
{% endfor %}
</ol>