diff options
| author | Eugen Wissner <belka@caraus.de> | 2025-11-05 09:33:23 +0100 |
|---|---|---|
| committer | Eugen Wissner <belka@caraus.de> | 2025-11-05 09:33:23 +0100 |
| commit | 86f7a15a2843f8c207124345d13969fb05ecc611 (patch) | |
| tree | d0850ce1f334093f70a06eec5de97fb8b54372c2 /templates/default.html | |
| parent | 80e0fe22d28687f3599a949f1a4d29171b12b20f (diff) | |
| download | flevum-86f7a15a2843f8c207124345d13969fb05ecc611.tar.gz | |
Move themes files into the root directory
Diffstat (limited to 'templates/default.html')
| -rw-r--r-- | templates/default.html | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/templates/default.html b/templates/default.html new file mode 100644 index 0000000..f7aa7ec --- /dev/null +++ b/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("templates/_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("templates/_includes/partials/burgerMenu.html")$ + + $partial("templates/_includes/layout/header.html")$ + + $partial("templates/_includes/layout/navigation.html")$ + + $partial("templates/_includes/partials/headerSeparator.html")$ + + <main class="$if(active-index)$wrapper long$else$wrapper$endif$" role="main"> + $body$ + </main> + + $partial("templates/_includes/layout/footer.html")$ + </body> +</html> |
