Replace sass include with 11ty bundle
This commit is contained in:
parent
790c560764
commit
98f2f4fb46
|
|
@ -2,6 +2,15 @@
|
|||
<html lang={{ site.lang }} class="no-js">
|
||||
<head>
|
||||
{% 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>
|
||||
<body>
|
||||
{% include "partials/header.liquid" %}
|
||||
|
|
|
|||
|
|
@ -21,7 +21,3 @@
|
|||
<meta property="og:url" content="{{ currentUrl }}" />
|
||||
|
||||
<link rel="icon" href="/favicon.ico" sizes="any">
|
||||
|
||||
<style>
|
||||
{% include "css/critical.css" %}
|
||||
</style>
|
||||
|
|
|
|||
Loading…
Reference in a new issue