-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
57 lines (44 loc) · 1.34 KB
/
index.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
53
54
55
56
57
---
# You don't need to edit this file, it's empty on purpose.
# Edit theme's home layout instead if you wanna make some changes
# See: https://jekyllrb.com/docs/themes/#overriding-theme-defaults
layout: home
author_profile: true
---
<h2> Book Index (by a Table) </h2>
<!--<ul class="features">
{% assign sorted = site.posts | sort: 'name' %}
{% for post in sorted %}
<li><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }} </a><span class="date">- {{ post.date | date: "%B %-d, %Y" }}</span></li>
{% endfor %}
</ul>
<hr> -->
<table id="datatab3" summary="Table of readings" border="1">
<tr>
<h3><b>
<th>No.</th>
<th>Date-Read</th>
<th>Title and Information</th>
<th>Tags</th>
</b>
</h3>
</tr>
{% assign counter = 1 %}
{% assign sorted = site.posts | sort: 'date' | reverse %}
{% for post in sorted %}
<tr>
<td>{{ counter }}</td>
<td><span class="date"> {{ post.date | date: "%Y, %-b, %-d " }}</span></td>
<td><a href="{{ site.baseurl }}{{ post.url }}">{{ post.title }} </a></td>
<td>
{% for t in post.tags %}
<a class="button2" href="{{ site.baseurl }}/tag/#{{t | downcase | replace:" ","-" }}">{{ t | downcase }}</a>
{% endfor %}
</td>
</tr>
{% assign counter=counter | plus:1 %}
{% endfor %}
</table>
<div class="center">
<a href="{{ site.baseurl }}/tags/" title="View Posts by Tag">View Posts organized by Tags</a>
</div>