forked from handong1587/handong1587.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
links.html
29 lines (28 loc) · 805 Bytes
/
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
---
layout: default
title: Links
comment: true
keywords: Links
---
<div class="article">
<h3 class="title">{{ page.title }}</h3>
<div class="links">
{% for i in site.customLinks %}
<h4 class="links-category fn-clear">{{ i.message }}</h4>
<ul class="links-list fn-clear">
{% for link in i.item %}
<li><a href="{{ link.url }}" target="_blank">{{ link.text }}</a></li>
{% endfor %}
</ul>
{% endfor %}
</div>
<div class="comment">
{% if site.disqus.config %}
<div id="disqus_thread"></div>
{% else %}
{% if site.duoshuo.config %}
<div class="ds-thread" data-thread-key="{{ page.title }}"></div>
{% endif %}
{% endif %}
</div>
</div>