27 lines
907 B
HTML
27 lines
907 B
HTML
<!DOCTYPE html>
|
|
<html data-theme="dark">
|
|
<head>
|
|
$partial("templates/_includes/meta.html")$
|
|
|
|
<title>$title$ | Flevum</title>
|
|
|
|
<link rel="canonical" href="https://www.flevum.de$url$">
|
|
<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>
|