-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
70 lines (64 loc) · 1.62 KB
/
index.php
File metadata and controls
70 lines (64 loc) · 1.62 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8"/>
<title>Hebrew tools</title>
<style type="text/css">
body {
background: #fcfcfc;
font-family: sans-serif;
padding-top: 50px;
text-align: center;
}
a.block {
background: #d0d0d0;
border-radius: 20px;
color: #000;
display: inline-block;
height: 300px;
margin: 30px;
position: relative;
text-decoration: none;
top: 0;
width: 320px;
}
a.block img {
max-height: 160px;
max-width: 240px;
}
a.block .footer {
background: #ddd;
border-radius: 0 0 20px 20px;
bottom: 0;
height: 2em;
left: 0;
line-height: 2em;
position: absolute;
width: 100%;
}
a.block:hover .footer {
text-decoration: underline;
}
</style>
</head>
<body>
<a class="block" href="https://parse.hebrewtools.org/">
<h1>Parse Trainer</h1>
<img src="parse-trainer.png"/>
<span class="footer">Go!</span>
</a>
<a class="block" href="https://clauses.hebrewtools.org/">
<h1>Clause Formatter</h1>
<img src="clause-formatter.png"/>
<span class="footer">Go!</span>
</a>
<a class="block" href="https://reader.hebrewtools.org/">
<h1>Reader Generator</h1>
<img src="reader-generator.png"/>
<span class="footer">Go!</span>
</a>
<p>Copyright © 2016–<?=date('Y')?> <a href="https://camilstaps.nl">Camil Staps</a>.</p>
<p>See <a href="https://github.com/HebrewTools">GitHub</a> for the source code
and <a href="https://etcbc.nl/bible/digital-tools-for-the-study-of-biblical-hebrew/">etcbc.nl/bible/digital-tools-for-the-study-of-biblical-hebrew</a> for an overview of the various tools.</p>
</body>
</html>