crisp-theme/_includes/layouts/base.njk

19 lines
587 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:53:23 -04:00
<meta name="description" content="{{ description or metadata.description }}">
<link rel="alternate" href="/feed/feed.xml" type="application/atom+xml" title="{{ metadata.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>