website/templates/base.html.tera

82 lines
1.6 KiB
Plaintext

<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="shortcut icon" type="image/png" href="favicon.png"/>
<title>mycelial technology | glyph</title>
<meta name="author" content="glyph">
<meta name="description" content="The personal website of glyph.">
<meta name="keywords" content="mycology, fermentation, coding">
<style>
a {
color: #111;
padding: 0.2rem;
}
a:hover {
background-color: #111;
color: #fff;
}
body {
max-width: 900px;
font-family: monospace;
}
html {
background-color: #fefefe;
color: #111;
font-size: 14px;
}
h1 {
color: #222;
}
h2 {
color: #222;
}
.list-item {
list-style-type: none;
padding: 0.5rem;
}
.nav-bar {
list-style-type: none;
display: inline-block;
padding-left: 0;
}
.nav-item {
border: solid 1px #111;
color: #111;
display: inline-block;
margin-top: 0.2rem;
padding: 0.5rem;
}
.nav-item:hover {
background-color: #111;
}
.nav-item:hover a {
background-color: #111;
color: #fff;
}
.nav-item a {
text-decoration: none;
}
p {
padding: 0.5rem;
}
</style>
</head>
<body>
{% block nav %}{% endblock %}
</body>
</html>