Files
ursprungsverige/templates/single.html
Jonas Raneryd Imaizumi 28f232571d Refactor site templates to include footer partial and update page paths
- Added a footer partial to improve code reusability across templates.
- Updated paths for the 'about' and 'badges' pages to 'om-oss.html' and 'om-markning.html', respectively.
- Removed redundant footer code from individual templates, replacing it with a dynamic footer inclusion.
2026-01-26 00:39:41 +01:00

27 lines
631 B
HTML

<!DOCTYPE html>
<html lang="sv">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{{ title }}</title>
<link rel="stylesheet" href="../styles.css">
</head>
<body>
<header class="site-header site-header--single">
<div class="container">
<a href="../index.html" class="site-title-link">
<h1 class="site-title site-title--small">Ursprung Sverige</h1>
</a>
</div>
</header>
<main class="site-main site-main--single">
<div class="container container--narrow">
{{ content }}
</div>
</main>
{{ footer }}
</body>
</html>