chore: minor updates
This commit is contained in:
parent
35b93ad64b
commit
41bf7db8c9
2 changed files with 21 additions and 11 deletions
|
@ -39,6 +39,4 @@
|
|||
https://cdme.netlify.app https://coryd.dev 301!
|
||||
|
||||
# analytics
|
||||
/js/script.js https://plausible.io/js/script.outbound-links.js 200
|
||||
/api/event https://plausible.io/api/event 200
|
||||
/test.js https://cdn.usefathom.com/script.js 200
|
||||
/script.js https://cdn.usefathom.com/script.js 200
|
|
@ -1,8 +1,7 @@
|
|||
{%- capture fullUrl %}{{ site.url }}{{ page.url }}{% endcapture -%}
|
||||
{%- capture fullUrl %}
|
||||
{{ site.url }}{{ page.url }}{% endcapture -%}
|
||||
<!doctype html>
|
||||
<html
|
||||
class="scrollbar-thin scrollbar-thumb-purple-500 scrollbar-track-purple-100"
|
||||
lang="en">
|
||||
<html class="scrollbar-thin scrollbar-thumb-purple-500 scrollbar-track-purple-100" lang="en">
|
||||
<head>
|
||||
<title>
|
||||
{% if title %}
|
||||
|
@ -20,8 +19,14 @@
|
|||
<meta property="og:image" content="{{ image | getPostImage }}">
|
||||
<meta name="theme-color" content="#a855f7" />
|
||||
<meta name="generator" content="{{ eleventy.generator }}">
|
||||
<link href="/assets/icons/favicon.ico?v={% version %}" rel="icon" sizes="any">
|
||||
<link href="/assets/icons/favicon.svg?v={% version %}" rel="icon" type="image/svg+xml">
|
||||
<link
|
||||
href="/assets/icons/favicon.ico?v={% version %}"
|
||||
rel="icon"
|
||||
sizes="any">
|
||||
<link
|
||||
href="/assets/icons/favicon.svg?v={% version %}"
|
||||
rel="icon"
|
||||
type="image/svg+xml">
|
||||
<link href="/assets/icons/apple-touch-icon.png?v={% version %}" rel="apple-touch-icon">
|
||||
<link href="/assets/styles/tailwind.css?v={% version %}" rel="stylesheet" />
|
||||
{% capture css %}
|
||||
|
@ -50,9 +55,16 @@
|
|||
<script type="application/ld+json">
|
||||
{% jsonLd meta, type, tags %}
|
||||
</script>
|
||||
<script defer data-domain="coryd.dev" src="{{ site.url }}/js/script.js"></script>
|
||||
<script
|
||||
src="{{ site.url }}/script.js"
|
||||
data-site="RBCOWZTA"
|
||||
defer></script>
|
||||
<noscript>
|
||||
<style>.client-side {display:none}</style>
|
||||
<style>
|
||||
.client-side {
|
||||
display: none
|
||||
}
|
||||
</style>
|
||||
</noscript>
|
||||
</head>
|
||||
<body class="dark:text-white bg-white dark:bg-gray-900 font-sans text-gray-800 scrollbar-thin scrollbar-thumb-purple-500 scrollbar-track-purple-100">
|
||||
|
|
Reference in a new issue