-
Notifications
You must be signed in to change notification settings - Fork 0
/
entry.html
53 lines (53 loc) · 1.64 KB
/
entry.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="description" content="{{.User.Description}}" />
<title>{{.User.Name}}</title>
{{template "styles/global.html"}}
{{template "styles/layout.html"}}
</head>
<body>
<div class="info-wrapper">
{{template "components/info.html" .}}
</div>
<div class="nav-wrapper">
{{template "components/nav.html" .}}
</div>
<div class="cards-wrapper projects">
{{range .Projects}}
{{template "components/project.html" .}}
{{end}}
</div>
<div class="cards-wrapper contributions">
{{range .Contributions}}
{{template "components/contribution.html" .}}
{{end}}
</div>
<div class="cards-wrapper keyboards">
{{range .Keyboards}}
{{template "components/creation.html" .}}
{{end}}
</div>
<div class="cards-wrapper illustrations">
{{range .Illustrations}}
{{template "components/creation.html" .}}
{{end}}
</div>
<div class="cards-wrapper woodworking">
{{range .Woodworking}}
{{template "components/creation.html" .}}
{{end}}
</div>
<script>
// Page contents are only made visible after tabbed navigation has
// loaded to prevent flash of empty content.
document.body.style.opacity = 0;
document.addEventListener("DOMContentLoaded", () => {
document.body.style.opacity = 1;
});
</script>
</body>
</html>