ramik_dev/templates/template.html

26 lines
656 B
HTML
Raw Normal View History

2024-03-27 16:36:54 -04:00
<!doctype html>
<html lang="en">
<head>
2024-06-15 15:15:13 -04:00
<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>
2024-03-27 16:36:54 -04:00
</head>
<body>
2024-06-15 15:15:13 -04:00
<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>
2024-03-27 16:36:54 -04:00
</body>
</html>