ramik_dev/templates/template.html
2024-06-15 15:15:13 -04:00

26 lines
656 B
HTML

<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="date" content='$date$'>
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap" rel="stylesheet">
<link rel="stylesheet" href="/static/style.css">
<title>$title$</title>
</head>
<body>
<div id="wrapper">
<div class="title">
<a class="back" title="Back" href="/blog">..</a>
<h2>
$title$
</h2>
<span class="date">$date$</span>
</div>
<hr>
$body$
</div>
</body>
</html>