-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlinks.html
executable file
·53 lines (48 loc) · 1.58 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
40
41
42
43
44
45
46
47
48
49
50
51
52
---
title: 目录
layout: links
---
<div class="container">
<div id="article">
<h1>目录</h1>
<p>按标签分类,可能有的会交叉,都是按照自己理解的来分类.</p>
<br>
<center>
{% for tag in site.classes %}
<a href="#{{ tag }}"><span class="label label-danger java-button" style="text-transform:capitalize;">{{ tag }}</span></a>
{% endfor %}
</center>
<br>
</div>
{% for tag in site.classes %}
<div id="article" class="{{ tag }}">
<a name="{{ tag }}">
<h2 style="text-transform:capitalize;">{{ tag }}</h2>
<table class="table table-hover ">
<tbody>
{% for post in site.posts %}
{% if post.category == tag %}
<tr>
<td valign="top" class="td2" style="width:40%;">
<p class="p2"><span class="s2"><a href="{{ post.url }}"><b>{{ post.title }}</b></a></span></p>
</td>
<td valign="top" class="td3">
<p class="p2"><span class="s1">{{ post.summary }}<span class="Apple-converted-space"> </span></span></p>
</td>
</tr>
{% endif %}
{% endfor %}
</table>
</div>
{% endfor %}
</div>
<footer>
<p class="text-muted credit">© 2014 Herring Cove · <a href="https://github.com/arnp/herring-cove"> Herring Cove for Jekyll </a>2014-01-02 21:36:56 -0500 </p>
</footer>
<!-- Bootstrap core JavaScript-->
<script src="js/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/bootstrap.js"></script>
<script type="text/javascript" src="js/hc.js"></script>
</body>
</html>