Files
hedgeblog/templates/index.html
jetstream0 db4f5fea22 add css, next post feature
change favicon, add more readme, add extra example post, dark/light mode toggle
2023-07-31 22:54:05 -07:00

30 lines
1002 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>prussia fan club</title>
<link rel="icon" type="image/png" href="/favicon.ico">
<link rel="stylesheet" href="/styles/global.css">
<link rel="stylesheet" href="/styles/index.css">
</head>
<body>
[[ component:dark-mode-checkbox ]]
<div id="main">
<div>
<input id="fancy-title" type="checkbox"/><label for="fancy-title">Fancy Title</label>
<br>
<h2>prussiafan.club</h2>
<br>
<p>This is my blog. I also have a <a href="https://prussia.dev">portfolio</a>, <a href="https://prussia.dev/retro">retro style personal website</a>, and a place where you can <a href="https://prussia.dev/sample">hire me</a>.</p>
</div>
<div>
<ul>
[[ for:posts:post ]]
[[ component:post-listing ]]
[[ endfor ]]
</ul>
</div>
</div>
</body>
</html>