forked from CenterForDigitalHumanities/TPEN-interfaces
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
45 lines (38 loc) · 1.24 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
<!DOCTYPE html>
<html lang="en">
<head>
<title>TPEN Interfaces</title>
<meta charset="UTF-8">
<link href="favicon.ico" rel="icon" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<script src="api/TPEN.mjs" type="module"></script>
<script src="components/projects-list/index.mjs" type="module"></script>
<script src="components/public-login/index.js" type="module"></script>
<script src="components/user-profile/index.mjs" type="module"></script>
<script src="api/events.mjs" type="module"></script>
</head>
<body>
<h1>TPEN Interfaces</h1>
<p>No style, no flash, just proof-of-life.</p>
<auth-button></auth-button>
<small>/components/public-login</small>
<h2>User Content</h2>
<small>/components/projects-list</small>
<h3>Projects (roles)</h3>
<style scoped>
.badge::before {
content: '(';
}
.badge::after {
content: ')';
}
li::after {
content: '<'attr(tpen-project-id)'>';
}
</style>
<tpen-projects-list></tpen-projects-list>
<small>/components/user-profile</small>
<h3>Profile</h3>
<tpen-user-profile></tpen-user-profile>
</body>
</html>