-
Notifications
You must be signed in to change notification settings - Fork 0
/
sitemap.html
86 lines (51 loc) · 1.52 KB
/
sitemap.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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
---
permalink: /sitemap.html
layout:
title: Table of Contents
---
{% include head.html %}
{% include title.html %}
<br>
<br>
<h1> {{ page.title }} </h1>
<div class = "indexcontent">
<h1> </h1>
<div>
<h2><a href = "{{ BASE_PATH }}about/">about myself</a></h2>
<h2><a href = "{{ BASE_PATH }}about.html">about this website</a></h2>
</div>
<h2><a href = "{{ BASE_PATH }}research/"> Research </a> </h2>
<div>
{% for page in site.pages %}
{% if page.categories contains 'research'%}
<h3><a href="{{ BASE_PATH }}{{ page.url }}">{{ page.title }}</a></h3>
{% endif %}
{% endfor %}
</div>
<h3> <a href = "{{ BASE_PATH }}publications/">Publications </a></h3>
<div class = "publist">
<div class = "two-col">
<ul>
{% for page in site.pages %}
{% if page.categories contains 'article' %}
<li>
<a href= "{{ BASE_PATH }}{{page.url}}">{{ page.authors }} ({{ page.date | date: "%Y"}}), {{ page.title }}, <i>{{ page.journal }}</i>, {{page.volume}}:{{ page.pages }}</a>
</li>
{% endif %}
{% endfor %}
</ul>
</div>
</div>
<h2> Weblog </h2>
<div class = "two-col">
{% for post in site.posts %}
<h3><a href="{{ BASE_PATH }}{{ post.url }}">{{ post.title }}</a></h3>
<h5> <i>by</i> <b>{{ post.author}}</b><i>, {{ post.date | date_to_long_string }}</i> </h5>
{% endfor %}
</div>
</div>
<!-- footer -->
<div class = "up" >
<a rel = "prev" href="{{ site.url }}/"> <span> ˆ </span></a>
</div>
{% include footer.html%}