-
Notifications
You must be signed in to change notification settings - Fork 0
/
wiki.html
executable file
·33 lines (31 loc) · 1002 Bytes
/
wiki.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
---
title: Wiki
layout: default
description: 好记性不如烂笔头
header-img: "img/wiki-bg.jpg"
---
<!-- Page Header -->
{% include intro-header.html type='page' short=true %}
<div class="container">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 col-md-10 col-md-offset-1">
<div class="mini-post-list">
{% for wiki in site.wiki reversed %}
<div class="post-preview item">
<a href="{{ wiki.url | prepend: site.baseurl }}">
<h2 class="post-title">
{{ wiki.title }}
</h2>
{% if wiki.subtitle %}
<h3 class="post-subtitle">
{{ wiki.subtitle }}
</h3>
{% endif %}
</a>
<hr>
</div>
{% endfor %}
</div>
</div>
</div>
</div>