notes/notes_theme/base.html
2025-03-02 00:27:01 +10:30

29 lines
616 B
HTML

<!DOCTYPE html>
<html>
<head>
<title>{% if page.title %}{{ page.title }} - {% endif %}{{ config.site_name }}</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="{{ 'css/main.css' | url }}" rel="stylesheet">
{%- for path in config.extra_css %}
<link href="{{ path | url }}" rel="stylesheet">
{%- endfor %}
</head>
<body>
{% include "main-menu.html" %}
<main>
{{ page.content }}
</main>
{%- for script in config.extra_javascript %}
{{ script | script_tag }}
{%- endfor %}
</body>
</html>