tilde/_layouts/base.html
2025-12-13 00:07:35 -06:00

18 lines
588 B
HTML

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