chore: improve header order
This commit is contained in:
parent
100364fd6e
commit
19d81e51ac
2 changed files with 10 additions and 10 deletions
|
@ -1,6 +1,6 @@
|
||||||
{
|
{
|
||||||
"name": "coryd.dev",
|
"name": "coryd.dev",
|
||||||
"version": "7.10.4",
|
"version": "7.10.5",
|
||||||
"description": "The source for my personal site. Built using 11ty.",
|
"description": "The source for my personal site. Built using 11ty.",
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -3,9 +3,17 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
<head>
|
<head>
|
||||||
<title>{{ pageTitle }}</title>
|
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
|
<title>{{ pageTitle }}</title>
|
||||||
|
<script defer data-domain="coryd.dev" src="/js/script.js"></script>
|
||||||
|
<script>window.plausible = window.plausible || function() {(window.plausible.q = window.plausible.q || []).push(arguments)}</script>
|
||||||
|
{% capture css %}
|
||||||
|
{% render "../assets/styles/partials/vars.css" %}
|
||||||
|
{% render "../assets/styles/partials/animations.css" %}
|
||||||
|
{% render "../assets/styles/index.css" %}
|
||||||
|
{% endcapture %}
|
||||||
|
<style>{{ css }}</style>
|
||||||
<link rel="canonical" href="{{ fullUrl }}" />
|
<link rel="canonical" href="{{ fullUrl }}" />
|
||||||
<meta property="og:title" content="{{ pageTitle }}" />
|
<meta property="og:title" content="{{ pageTitle }}" />
|
||||||
<meta name="description" content="{% if description %}{{ description }}{% else %}{{ meta.siteDescription }}{% endif %}" />
|
<meta name="description" content="{% if description %}{{ description }}{% else %}{{ meta.siteDescription }}{% endif %}" />
|
||||||
|
@ -22,12 +30,6 @@
|
||||||
<link href="/assets/icons/favicon.ico?v={% appVersion %}" rel="icon" sizes="any">
|
<link href="/assets/icons/favicon.ico?v={% appVersion %}" rel="icon" sizes="any">
|
||||||
<link href="/assets/icons/favicon.svg?v={% appVersion %}" rel="icon" type="image/svg+xml">
|
<link href="/assets/icons/favicon.svg?v={% appVersion %}" rel="icon" type="image/svg+xml">
|
||||||
<link href="/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
<link href="/assets/icons/apple-touch-icon.png?v={% appVersion %}" rel="apple-touch-icon">
|
||||||
{% capture css %}
|
|
||||||
{% render "../assets/styles/partials/vars.css" %}
|
|
||||||
{% render "../assets/styles/partials/animations.css" %}
|
|
||||||
{% render "../assets/styles/index.css" %}
|
|
||||||
{% endcapture %}
|
|
||||||
<style>{{ css }}</style>
|
|
||||||
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
<link rel="webmention" href="https://webmention.io/coryd.dev/webmention" />
|
||||||
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
<link rel="pingback" href="https://webmention.io/coryd.dev/xmlrpc" />
|
||||||
<link type="application/atom+xml" rel="alternate" title="{{ meta.siteName }}" href="https://feedpress.me/coryd">
|
<link type="application/atom+xml" rel="alternate" title="{{ meta.siteName }}" href="https://feedpress.me/coryd">
|
||||||
|
@ -79,8 +81,6 @@
|
||||||
}
|
}
|
||||||
</script>
|
</script>
|
||||||
{% endif %}
|
{% endif %}
|
||||||
<script defer data-domain="coryd.dev" src="/js/script.js"></script>
|
|
||||||
<script>window.plausible = window.plausible || function() {(window.plausible.q = window.plausible.q || []).push(arguments)}</script>
|
|
||||||
<noscript>
|
<noscript>
|
||||||
<style>.client-side {display:none}</style>
|
<style>.client-side {display:none}</style>
|
||||||
</noscript>
|
</noscript>
|
||||||
|
|
Reference in a new issue