forked from kaeyleo/jekyll-theme-H2O
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.html
39 lines (32 loc) · 1.1 KB
/
links.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
---
title: 站外链接
layout: default
permalink: /links/
---
{% include header.html %}
<div class="g-banner tags-banner {{ site.postPatterns | prepend: 'post-pattern-' }} {{ site.theme-color | prepend: 'bgcolor-' }}" data-theme="{{ site.theme-color }}">
<h2>站外链接</h2>
</div>
<main class="tags-content">
<ul class="tags-list">
<li>
<span class="tag-name">其他个人网站</span>
{% for i in site.link %}
<a class="tag-post" href="{{ i[1] | relative_url}}" title="{{ i[0] }}">{{ i[0] }}</a>
{% endfor %}
</li>
<li>
<span class="tag-name">小工具</span>
{% for i in site.tool %}
<a class="tag-post" href="{{ i[1] | relative_url}}" title="{{ i[0] }}">{{ i[0] }}</a>
{% endfor %}
</li>
<li>
<span class="tag-name">友情网站</span>
{% for i in site.friend %}
<a class="tag-post" href="{{ i[1] | relative_url}}" title="{{ i[0] }}">{{ i[0] }}</a>
{% endfor %}
</li>
</ul>
</main>
{% include footer.html %}