-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtoc2022.html
82 lines (67 loc) · 2.52 KB
/
toc2022.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
---
layout: default
---
<!DOCTYPE html>
<html lang="en">
<head>
<link rel="stylesheet" type="text/css" href="{{site.baseurl}}/assets/css/tcontentsstyle.css">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<title>table of contents</title>
<body>
{% include navbar.html %}
<div class="tcontents">
<h3><i>Spring 2022 issue</i></h3>
<h1 class="tcontents-title">table of contents</h1>
<div class="toc-container">
<div class="left">
<div class="tcleft">
<h2 class="tcleft"><a href="frontmatter/staff2022">Staff</a></h2>
</div>
{% for item in site.data.poems_2022 %}
{% if item.pagetype == "frontmatter" %}
<div class="tcleft">
<h2 class="tcleft"><a href="poems_2022/{{item.pid}}">{{ item.transtitle }}</a></h2>
<h3 class="tcleft"> by {{ item.author }}</h3>
</div>
{% elsif item.pagetype == "musing" %}
<div class="tcleft">
<h2 class="tcleft"><a href="poems_2022/{{item.pid}}">{{ item.transtitle }}</a></h2>
<h3 class="tcleft"> by {{ item.author }}</h3>
</div>
{% elsif item.pagetype == "interview" %}
<div class="tcleft">
<h2 class="tcleft"><a href="poems_2022/{{item.pid}}">{{ item.transtitle }}</a></h2>
<h3 class="tcleft"> {{ item.author }}</h3>
</div>
{% elsif item.pagetype == "submission" %}
<div class="tcleft">
<h2 class="tcleft"><a href="poems_2022/{{item.pid}}">{{ item.transtitle }}</a>
{% if item.title %}
<a href="poems_2022/{{item.pid}}">[<span lang= "{{ item.lang }}" dir="ltr">{{ item.title }}</span>]</a>
{% endif %}</h2>
<h3 class="tcleft">written by {{ item.author }} <br>translated from {{ item.language }} by {{ item.translator }}</h3>
</div>
{% endif %}
{% endfor %}
<div class="tcleft">
<h2 class="tcleft"><a href="frontmatter/copyright2022">Copyright</a></h2>
</div>
</div>
<div class="lineart">
<img class="line" style="margin: -100px -100px 0 0;" src="{{site.baseurl}}/assets/images/line 2022.svg"/>
</div>
</div>
</div>
</body>
<footer>
</footer>
<style>
.tcontents {
background-image: url('{{site.baseurl}}/assets/images/background_logo_ds.png');
background-size: cover;
background-repeat: no-repeat;
background-attachment: fixed;
}
</style>
<html>