diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-10-14 19:15:51 +0200 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-10-14 19:15:51 +0200 |
| commit | 8a2dadcd2572fb5f472c91e8bc3957882fa48320 (patch) | |
| tree | a982606db7fc2373994c645fa310d925dfcaac7c /themes/templates/default.html | |
| download | flevum-8a2dadcd2572fb5f472c91e8bc3957882fa48320.tar.gz | |
Open the blog
Diffstat (limited to 'themes/templates/default.html')
| -rw-r--r-- | themes/templates/default.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/themes/templates/default.html b/themes/templates/default.html new file mode 100644 index 0000000..80e9bd1 --- /dev/null +++ b/themes/templates/default.html @@ -0,0 +1,34 @@ +<!DOCTYPE html> +<html data-theme="dark"> + <head> + <meta charset="utf-8"> + <meta http-equiv="X-UA-Compatible" content="IE=edge"> + <meta name="viewport" content="width=device-width, initial-scale=1"> + + <meta name="author" content="Eugen Wissner" /> + + $partial("_includes/meta.html")$ + + <title>$title$ | Flevum</title> + + <link rel="icon" type="image/png" href="/assets/images/favicon.svg"> + <link href="/assets/css/styles.css?v=1" rel="stylesheet"> + <link href="/assets/css/custom.css?v=2" rel="stylesheet"> + </head> + + <body> + $partial("_includes/partials/burgerMenu.html")$ + + $partial("_includes/layout/header.html")$ + + $partial("_includes/layout/navigation.html")$ + + $partial("_includes/partials/headerSeparator.html")$ + + <main class="$if(active-index)$wrapper long$else$wrapper$endif$" role="main"> + $body$ + </main> + + $partial("_includes/layout/footer.html")$ + </body> +</html> |
