1
0
www/src/.template.html

42 lines
645 B
HTML

<html>
<head>
<meta charset="UTF-8">
<title></title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
body {
max-width: 100ch;
margin: 0 auto;
padding: 1em 2em;
line-height: 1.4em;
}
nav {
font-size: 1.2em;
font-family: monospace;
}
h2 {
font-family: monospace;
}
h3 {
font-variant: small-caps;
}
:target {
background: palegoldenrod;
}
header::after {
content: "";
display: block;
border-top: 1px solid gray;
}
</style>
</head>
<body>
<header>
<nav><a href="/">~</a>/</nav>
<h1></h1>
</header>
<main>
<article>This content is replaced.</article>
</main>
</body>
</html>