forked from goileolee/goileolee.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtimeline.html
36 lines (31 loc) · 1.25 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: 2017-11-26 15:00:00.000000000 +00:00
tags: GcsSloop, info
keywords: GcsSloop, gcssloop
excerpt: 博客时间线
---
<ol class="time-line">
<hr />
<!--置顶-->
{% for post in site.posts %}
{% if post.istop %}
<li>
<h4 class="time-line-title"><a href="{{ post.url }}" title="访问 {{ post.title }}">[置顶]{{ post.title }}</a></h4>
<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>
<h4 class="time-line-title"><a href="{{ post.url }}" title="访问 {{ post.title }}">{{ post.title }}</a></h4>
<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>