Replace sass include with 11ty bundle

This commit is contained in:
TheThomaas 2025-04-30 20:38:10 +02:00
parent 790c560764
commit 98f2f4fb46
2 changed files with 9 additions and 4 deletions

View file

@ -2,6 +2,15 @@
<html lang={{ site.lang }} class="no-js"> <html lang={{ site.lang }} class="no-js">
<head> <head>
{% include "partials/metas.html" %} {% include "partials/metas.html" %}
{% css %}
{% include "css/reset.css" %}
{% include "css/variables.css" %}
{% include "css/main.css" %}
{% include "css/header.css" %}
{% include "css/footer.css" %}
{% endcss %}
<link rel="stylesheet" href="{% getBundleFileUrl "css" %}">
</head> </head>
<body> <body>
{% include "partials/header.liquid" %} {% include "partials/header.liquid" %}

View file

@ -21,7 +21,3 @@
<meta property="og:url" content="{{ currentUrl }}" /> <meta property="og:url" content="{{ currentUrl }}" />
<link rel="icon" href="/favicon.ico" sizes="any"> <link rel="icon" href="/favicon.ico" sizes="any">
<style>
{% include "css/critical.css" %}
</style>