-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
81 lines (73 loc) · 2.54 KB
/
template.html
File metadata and controls
81 lines (73 loc) · 2.54 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
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<title>Local Docker Development DNS</title>
<meta name="go-import" content="ldddns.arnested.dk git https://github.com/arnested/ldddns.git"/>
<meta name="description" content="A systemd service that will monitor your Docker host and provide DNS names for containers based of the container name." />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link type="image/png" sizes="16x16" rel="icon" href="/favicons/16.png" media="(prefers-color-scheme: light)" />
<link type="image/png" sizes="32x32" rel="icon" href="/favicons/32.png" media="(prefers-color-scheme: light)" />
<link type="image/png" sizes="96x96" rel="icon" href="/favicons/96.png" media="(prefers-color-scheme: light)"/>
<link type="image/png" sizes="120x120" rel="icon" href="/favicons/120.png" media="(prefers-color-scheme: light)"/>
<link type="image/png" sizes="16x16" rel="icon" href="/favicons/dark-16.png" media="(prefers-color-scheme: dark)" />
<link type="image/png" sizes="32x32" rel="icon" href="/favicons/dark-32.png" media="(prefers-color-scheme: dark)" />
<link type="image/png" sizes="96x96" rel="icon" href="/favicons/dark-96.png" media="(prefers-color-scheme: dark)"/>
<link type="image/png" sizes="120x120" rel="icon" href="/favicons/dark-120.png" media="(prefers-color-scheme: dark)"/>
<style>
html {
background-color: white;
color: black;
font-family: system-ui, -apple-system;
font-size: 16px;
line-height: 1.6;
}
body {
padding: 0 2em;
max-width: 62em;
margin: 10ex auto;
}
code {
background-color: whitesmoke;
color: darkslategrey;
padding: 0.5ex 0.5em;
border-radius: 0.75em;
overflow-x: auto;
}
code.language-ini,
code.language-console {
padding: 2ex 1em;
margin: 2ex 0;
display: block;
}
code.language-console::before {
content: "$ ";
color: black;
font-weight: bold;
}
@media (prefers-color-scheme: dark) {
html {
background-color: black;
color: white;
}
code {
background-color: darkslategrey;
color: whitesmoke;
}
code.language-console::before {
color: white;
}
a:active, a:link, a:hover, a:visited {
color: white;
font-weight: bold;
}
}
</style>
</head>
<body>
<main>
{{{content}}}
</main>
<hr>
Copyright © 2020, 2021, 2022, 2023, 2024 <a href="https://arnested.dk">Arne Jørgensen</a> — <a href="https://github.com/arnested/ldddns/blob/main/LICENSE.md">MIT License</a> — <a href="https://github.com/arnested/ldddns">GitHub</a> — <a href="https://bsky.app/profile/ldddns.bsky.social">Bluesky</a>
</body>
</html>