85 lines
1.9 KiB
HTML
85 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>My Blog</title>
|
|
<style>
|
|
body {
|
|
font-family: system-ui, -apple-system, sans-serif;
|
|
max-width: 800px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
line-height: 1.6;
|
|
color: #333;
|
|
}
|
|
nav {
|
|
border-bottom: 2px solid #333;
|
|
padding-bottom: 10px;
|
|
margin-bottom: 30px;
|
|
}
|
|
nav span {
|
|
font-size: 1.2em;
|
|
font-weight: bold;
|
|
margin-right: 20px;
|
|
}
|
|
nav a {
|
|
margin-right: 20px;
|
|
text-decoration: none;
|
|
color: #0066cc;
|
|
}
|
|
nav a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
.post-list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
.post-list li {
|
|
margin-bottom: 10px;
|
|
padding: 10px;
|
|
border-left: 3px solid #0066cc;
|
|
padding-left: 15px;
|
|
}
|
|
.post-list a {
|
|
text-decoration: none;
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
.post-list a:hover {
|
|
color: #0066cc;
|
|
}
|
|
.date {
|
|
color: #666;
|
|
font-size: 0.9em;
|
|
float: right;
|
|
}
|
|
article {
|
|
margin-top: 30px;
|
|
}
|
|
h1, h2, h3 {
|
|
color: #222;
|
|
}
|
|
code {
|
|
background: #f4f4f4;
|
|
padding: 2px 6px;
|
|
border-radius: 3px;
|
|
}
|
|
pre {
|
|
background: #f4f4f4;
|
|
padding: 15px;
|
|
border-radius: 5px;
|
|
overflow-x: auto;
|
|
}
|
|
pre code {
|
|
padding: 0;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<nav>
|
|
<span>(dis)gus' things</span>
|
|
<a href="/">Home</a>
|
|
<a href="/all">All Posts</a>
|
|
</nav>
|