crisp-theme/_includes/layouts/base.njk

17 lines
401 B
Text
Raw Normal View History

2025-04-16 22:47:29 -04:00
<!DOCTYPE html>
<html>
<head>
2025-04-18 11:28:28 -04:00
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2025-04-16 22:47:29 -04:00
<title>{% if title %}{{ title }} - {% endif %}{{ metadata.title }}</title>
2025-04-18 11:28:28 -04:00
<link rel="stylesheet" href="/styles.css">
2025-04-16 22:47:29 -04:00
</head>
<body>
{{ content | safe }}
2025-04-18 11:28:28 -04:00
<hr>
<footer>
{% include "site_nav.njk" %}
{% include "socials.njk" %}
</footer>
2025-04-16 22:47:29 -04:00
</body>
</html>