45 lines
1.9 KiB
HTML
45 lines
1.9 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{% if metadata and metadata.title %}
|
|
<title>{{ metadata.title }} — Foldsite</title>
|
|
<meta name="description" content="{{ metadata.description or 'A thoughtful static site generator' }}">
|
|
{% if metadata.tags %}
|
|
<meta name="keywords" content="{{ metadata.tags | join(', ') }}">
|
|
{% endif %}
|
|
{% else %}
|
|
<title>Foldsite — Documentation</title>
|
|
<meta name="description" content="A thoughtful static site generator built with Python">
|
|
{% endif %}
|
|
|
|
<!-- Open Graph / Social Media -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:title" content="{{ metadata.title if metadata and metadata.title else 'Foldsite' }}">
|
|
<meta property="og:description" content="{{ metadata.description if metadata and metadata.description else 'A thoughtful static site generator' }}">
|
|
|
|
<!-- Load layout-specific styles -->
|
|
{% for style in styles %}
|
|
<link rel="stylesheet" href="/styles{{ style }}">
|
|
{% endfor %}
|
|
|
|
<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=Doto:wght@100..900&family=Lekton:ital,wght@0,400;0,700;1,400&display=swap" rel="stylesheet">
|
|
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/styles/default.min.css">
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/highlight.min.js"></script>
|
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/highlight.js/11.11.1/languages/django.min.js"></script>
|
|
|
|
|
|
{% block extra_styles %}{% endblock %}
|
|
</head>
|
|
<body>
|
|
{{ content|safe }}
|
|
|
|
<script>hljs.highlightAll();</script>
|
|
</body>
|
|
</html>
|