mirror of
https://github.com/Steffo99/bluelib.git
synced 2024-12-22 11:34:21 +00:00
22 lines
643 B
HTML
22 lines
643 B
HTML
|
<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>
|