1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-22 11:34:21 +00:00
bluelib/_layouts/0_page.html

22 lines
643 B
HTML
Raw Normal View History

2022-10-12 15:10:07 +00:00
<html>
<head>
<!-- Metadata -->
<meta charset="UTF-8"/>
<title>{{ page.title }} - {{ site.title }}</title>
<!-- Stylesheets -->
<style>
body {
background: {{ site.background }};
background-attachment: fixed;
background-size: cover;
}
</style>
{% for ruleset in site.bluelib.rulesets %}
<link rel="stylesheet" href="https://unpkg.com/@steffo/bluelib@^5/dist/{{ruleset}}.css" type="text/css"/>
{% endfor %}
</head>
<body>
{{ content }}
</body>
</html>