crisp-theme/_includes/layouts/base.njk

16 lines
401 B
Text

<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% if title %}{{ title }} - {% endif %}{{ metadata.title }}</title>
<link rel="stylesheet" href="/styles.css">
</head>
<body>
{{ content | safe }}
<hr>
<footer>
{% include "site_nav.njk" %}
{% include "socials.njk" %}
</footer>
</body>
</html>