feat: misc cleanup
This commit is contained in:
parent
9dc3ddeec7
commit
dbc72a383e
3 changed files with 5 additions and 5 deletions
|
@ -6,6 +6,7 @@
|
||||||
"author": "Devin Haska",
|
"author": "Devin Haska",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
"debug": "DEBUG=Eleventy* eleventy --serve --watch",
|
||||||
"dev": "eleventy --serve --watch",
|
"dev": "eleventy --serve --watch",
|
||||||
"lint": "eslint src/ config/"
|
"lint": "eslint src/ config/"
|
||||||
},
|
},
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
<base href="{{ page.url }}" />
|
<base href="{{ page.url }}" />
|
||||||
<meta name="description" content="" />
|
<meta name="description" content="{{ meta.siteDescription }}" />
|
||||||
<meta name="theme-color" content="" />
|
<meta name="theme-color" content="{{ colors.aqua[400] }}" />
|
||||||
<meta name="robots" content="index,follow" />
|
<meta name="robots" content="index,follow" />
|
||||||
<meta name="googlebot" content="index,follow" />
|
<meta name="googlebot" content="index,follow" />
|
||||||
<meta name="generator" content="" />
|
<meta name="generator" content="{{ eleventy.generator }}" />
|
||||||
<meta name="color-scheme" content="light dark" />
|
<meta name="color-scheme" content="light dark" />
|
||||||
<meta name="view-transition" content="same-origin" />
|
<meta name="view-transition" content="same-origin" />
|
||||||
<link rel="canonical" href="{{ meta.url }}{{ page.url }}" />
|
<link rel="canonical" href="{{ meta.url }}{{ page.url }}" />
|
||||||
|
|
|
@ -17,11 +17,10 @@
|
||||||
{% include "css/fontFace.njk" %}
|
{% include "css/fontFace.njk" %}
|
||||||
{% include "css/fontVariables.njk" %}
|
{% include "css/fontVariables.njk" %}
|
||||||
{% endset %}
|
{% endset %}
|
||||||
<style>{{ fontCss | minifyCss | safe }}</style>
|
|
||||||
{% set colorCss %}
|
{% set colorCss %}
|
||||||
{% include "css/colorVariables.njk" %}
|
{% include "css/colorVariables.njk" %}
|
||||||
{% endset %}
|
{% endset %}
|
||||||
<style>{{ colorCss | minifyCss | safe }}</style>
|
<style>{{ fontCss | minifyCss | safe }}{{ colorCss | minifyCss | safe }}</style>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
{% include "partials/header.html" %}
|
{% include "partials/header.html" %}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue