-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
139 lines (138 loc) · 5.4 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
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" dir="ltr">
<head>
<meta charset="utf-8" />
<title>Multilingual Botany</title>
<link rel="stylesheet" type="text/css" href="site.css" />
<link href="https://fonts.googleapis.com/css?family=Libre+Baskerville" rel="stylesheet" />
<style type="text/css">
h2 {
color: #159b11;
}
.images {
display: flex;
flex-direction: row;
}
.images div {
text-align: center;
height: 50%;
}
.images img {
width: 70%;
}
#lower {
margin-top: 2em;
display: flex;
flex-direction: row;
justify-content: space-evenly;
# align-items: center;
}</style>
</head>
<body>
<h1>Multilingual Botany</h1>
<div class="images">
<div>
<a href="composite/artemisia_vulgaris.html">
<img src="images/Armoise_grande_600.png" />
</a>
<br />
<a href="composite/artemisia_vulgaris.html">Artemisia Vulgaris</a>
</div>
<div>
<a href="composite/artemisia_tenuifolia.html">
<img src="images/Armoise_petite_600.png" />
</a>
<br />
<a href="composite/artemisia_tenuifolia.html">Artemisia Tenuifolia</a>
</div>
<div>
<a href="composite/ambrosia.html">
<img src="images/Herbe_a_vin_600.png" />
</a>
<br />
<a href="composite/ambrosia.html">Ambrosia</a>
</div>
<div>
<a href="composite/botrys.html">
<img src="images/Botrys_600.png" />
</a>
<br />
<a href="composite/botrys.html">Botrys</a>
</div>
</div>
<!--<h2>Graphic Visualizations</h2>
<p><a href="">Click here!</a></p>-->
<section id="lower">
<section id="stemma">
<h2>Relationship of Translations</h2>
<img src="stemma/stemma.svg" />
</section>
<section id="editions">
<h2>Historical Edition Images</h2>
<table class="list">
<tr>
<th>Language</th>
<th>Edition</th>
<th>Metadata</th>
</tr>
<tr>
<td>Greek 1</td>
<td>
<a href="sources/greek/greek_kuhn.pdf" target="_blank">ed. by K. G. Kühn
(Leipzig 1829, p. 463)</a>
</td>
<td>[none]</td>
</tr>
<tr>
<td>Greek 2</td>
<td>
<a href="sources/greek/greek_wellman.pdf" target="_blank">ed. by M.
Wellmann (vol. 2, Berlin 1906, p. 125)</a>
</td>
<td><a href="meta/greek.html">[metadata]</a></td>
</tr>
<tr>
<td>Latin</td>
<td>
<a href="sources/latin/latin_mattioli.pdf" target="_blank">ed. by P. A.
Mattioli (Venice 1560, p. 445)</a>
</td>
<td><a href="meta/latin.html">[metadata]</a></td>
</tr>
<tr>
<td>English</td>
<td>
<a href="sources/english/english_osbaldeston.pdf" target="_blank">ed. by
T. A. Osbaldeston (Johannesburg 2000, p. 513)</a>
</td>
<td><a href="meta/english.html">[metadata]</a></td>
</tr>
<tr>
<td>French</td>
<td>
<a href="sources/french/french_arnoullet.pdf" target="_blank">ed. by B.
Arnoullet (Lyon 1553, p. 223)</a>
</td>
<td><a href="meta/french.html">[metadata]</a></td>
</tr>
<tr>
<td>German</td>
<td>
<a href="sources/german/german_berendes.pdf" target="_blank">ed. by J.
Berendes (Stuttgart 1902, p. 339)</a>
</td>
<td><a href="meta/german.html">[metadata]</a></td>
</tr>
<tr>
<td>Italian</td>
<td>
<a href="sources/italian/italian_mattioli.pdf" target="_blank">ed. by P.
A. Mattioli (vol. 1, Venice 1585, p. 896)</a>
</td>
<td><a href="meta/italian.html">[metadata]</a></td>
</tr>
</table>
</section>
</section>
</body>
</html>