Initial commit
[xyz.git] / templates / entry.html
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <meta charset="utf-8">
5 <title>blog@cameron1729 - $title</title>
6 <style>
7 body, html {
8 width: 100%;
9 height: 100%;
10 padding: 0px;
11 margin: 0px;
12 }
13 body {
14 background-color: #BCBCBC;
15 font-family: helvetica;
16 font-weight: bold;
17 }
18 a {
19 color: #666666;
20 text-decoration: none;
21 }
22 a:hover {
23 color: #999999;
24 }
25 p {
26 font-size: 1.2vh;
27 margin-left: 5px;
28 margin-right: 15px;
29 }
30 h1 {
31 font-size: 3vh;
32 margin-left: 5px;
33 }
34 h3 {
35 padding: 0px;
36 margin-left: 30px;
37 font-size: 2vh;
38 }
39 </style>
40 <script>
41 window.onload = _ => {document.getElementById("video").muted = !!window.chrome;};
42 </script>
43 </head>
44 <body>
45 <h1>$title</h1>
46 <h3>$date (<a href="https://cameron1729.xyz/blog">blog index</a>)</h3>
47 $body
48 <p>ᚳᚱᛒ</p>
49 </body>
50 </html>
51