tilde/_layouts/base.html
2025-11-26 14:52:41 -06:00

14 lines
452 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href={{ "src/css/main.css" | relative_url }}>
<link rel="shortcut icon" href={{ "favicon.ico" | relative_url }}>
<title>{{ page.title }}</title>
</head>
<body {{ page.extra}} class="{{ page.style }}">
{{ content }}
</body>
</html>