1
Fork 0
mirror of https://github.com/Steffo99/bluelib.git synced 2024-12-23 03:54:21 +00:00
bluelib/_layouts/default.html

17 lines
757 B
HTML
Raw Normal View History

2021-10-10 18:32:41 +00:00
<html>
<head>
2021-10-10 23:20:22 +00:00
<meta charset="UTF-8"/>
<link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/skeleton.root.css" type="text/css"/>
<link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{ site.bluelib }}.root.css" type="text/css"/>
<link rel="stylesheet" href="https://gh.steffo.eu/bluelib/src/targets/{{ page.bluelib }}.root.css" type="text/css"/>
2021-10-11 00:35:20 +00:00
<link rel="stylesheet" href="{% link /assets/css/bluelib-jekyll.css %}"/>
2021-10-10 23:20:22 +00:00
{% for css in site.extra_css %}
2021-10-11 00:35:20 +00:00
<link rel="stylesheet" href="{% link css %}"/>
2021-10-10 23:20:22 +00:00
{% endfor %}
2021-10-11 00:35:20 +00:00
<title>{{ page.title }} - {{ site.title }}</title>
2021-10-10 18:32:41 +00:00
</head>
<body>
{{ content }}
</body>
</html>