-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathabout.html
More file actions
34 lines (30 loc) · 1.16 KB
/
about.html
File metadata and controls
34 lines (30 loc) · 1.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="tpen-env" content="prod">
<title>About TPEN</title>
<!-- Inject environment before modules -->
<script>
globalThis.TPEN_ENV = window.TPEN_ENV ??= (document.querySelector('meta[name="tpen-env"]')?.content ?? 'dev')
</script>
<script src="/config.env.js"></script>
<script type="module" src="components/gui/site/index.js"></script>
<script type="module" src="components/gui/card/Card.js"></script>
</head>
<body>
<tpen-page>
<h2>TPEN 3.0</h2>
<p>
TPEN 3.0 is a web-based application designed to assist in the transcription of historical documents.
It provides a user-friendly interface for transcribing, annotating, and analyzing texts, making it
an invaluable tool for historians, archivists, and researchers.
</p>
<p>
<a href="https://three.t-pen.org/about/" target="_blank" rel="noopener noreferrer">Learn more at the TPEN3
home site!</a>
</p>
</tpen-page>
</body>
</html>