generated from nhcarrigan/template
Compare commits
3 Commits
Author | SHA1 | Date | |
---|---|---|---|
06e58752b9 | |||
db4dcc3090 | |||
53aa95c9c2 |
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "website-headers",
|
||||
"version": "1.5.0",
|
||||
"version": "1.6.0",
|
||||
"description": "",
|
||||
"main": "index.js",
|
||||
"type": "module",
|
||||
|
14
src/index.ts
14
src/index.ts
@ -24,7 +24,7 @@ const body = document.querySelector("body");
|
||||
const title = document.querySelector("title");
|
||||
const description = document.querySelector(`meta[name="description"]`);
|
||||
|
||||
const { href: url, hostname } = window.location;
|
||||
const { href: url, hostname, pathname } = window.location;
|
||||
|
||||
// #endregion
|
||||
|
||||
@ -112,8 +112,8 @@ styles.innerHTML = `
|
||||
}
|
||||
|
||||
:root {
|
||||
--foreground: #db7093;
|
||||
--background: #ffefefbb;
|
||||
--foreground: #2a0a18;
|
||||
--background: #ffb6c1bb;
|
||||
}
|
||||
|
||||
* {
|
||||
@ -191,8 +191,8 @@ a {
|
||||
align-items: center;
|
||||
}
|
||||
.is-dark {
|
||||
--foreground: #ffefef;
|
||||
--background: #db7093bb;
|
||||
--foreground: #ffb6c1;
|
||||
--background: #2a0a18bb;
|
||||
}
|
||||
@media screen and (prefers-reduced-motion) {
|
||||
#footer-badge-container {
|
||||
@ -314,6 +314,10 @@ analytics.setAttribute("domain", "nhcarrigan.com");
|
||||
analytics.src
|
||||
// eslint-disable-next-line stylistic/max-len
|
||||
= "https://analytics.nhcarrigan.com/js/script.file-downloads.hash.outbound-links.pageview-props.revenue.tagged-events.js";
|
||||
analytics.setAttribute("event-domain", hostname);
|
||||
analytics.setAttribute("data-domain", "nhcarrigan.com");
|
||||
analytics.setAttribute("event-page", title?.innerText ?? "Unknown Page");
|
||||
analytics.setAttribute("event-path", pathname);
|
||||
const analytics2 = document.createElement("script");
|
||||
analytics2.innerHTML = `
|
||||
window.plausible = window.plausible ??
|
||||
|
Loading…
x
Reference in New Issue
Block a user