-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtemplate.html
More file actions
64 lines (55 loc) · 1.94 KB
/
template.html
File metadata and controls
64 lines (55 loc) · 1.94 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
<!doctype html>
<html class="no-js" lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="x-ua-compatible" content="ie=edge">
<title>{title}</title>
<meta name="description" content="">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="manifest" href="site.webmanifest">
<link rel="apple-touch-icon" href="icon.png">
<link rel="stylesheet" type="text/css" href="https://fonts.googleapis.com/css?family=Inconsolata" />
<!-- Place favicon.ico in the root directory -->
<link href='https://fonts.googleapis.com/css?family=Lato&subset=latin,latin-ext' rel='stylesheet' type='text/css'>
<link rel="stylesheet" type="text/css" href="/skeleton.css">
<link rel="stylesheet" type="text/css" href="/custom.css">
{head}
<script>
function screen_txt(id) {{
document.getElementById('screen').innerHTML=document.getElementById(id).outerHTML;
}}
function screen_img(imgurl) {{
document.getElementById('screenimage').src=imgurl;
}}
</script>
<script data-goatcounter="https://devottys.goatcounter.com/count" async src="//gc.zgo.at/count.js"></script>
</head>
<body>
<div>
<div id="computer">
<img src="/computer.png" alt="Desktop computer" />
<!--img src="/monitor.png" alt="Flatpanel monitor" /-->
<div id="screen">
<div class="screentext">
<img src="/bluebird.png" />
</div>
</div>
</div>
<div id="cta">
<a href="https://www.patreon.com/bePatron?u=13873753">
<div id="patreon">Support on Patreon!</div>
</a>
<div>
<button onclick="window.open('https://buttondown.com/saulpw', '_blank')">
Newsletter
</button>
</div>
</div>
{body}
</div>
<section id="footer">
<footer>
</footer>
</section>
</body>
</html>