aboutsummaryrefslogtreecommitdiff
path: root/src/components
diff options
context:
space:
mode:
authorValentin Popov <valentin@popov.link>2024-09-13 02:33:43 +0300
committerValentin Popov <valentin@popov.link>2024-09-13 02:33:43 +0300
commitb8fd1868010e74639a7755e9ec93061b712d55fb (patch)
tree8d0ab41748e280452d4a75ba8008d615db648989 /src/components
parent33c9464dad0979b05323e4d508875ad47e1c425f (diff)
downloadpopov.link-b8fd1868010e74639a7755e9ec93061b712d55fb.tar.xz
popov.link-b8fd1868010e74639a7755e9ec93061b712d55fb.zip
Refactor Analytics component to encode URI parameters
Diffstat (limited to 'src/components')
-rw-r--r--src/components/Analytics.astro2
-rw-r--r--src/components/Header.astro5
2 files changed, 4 insertions, 3 deletions
diff --git a/src/components/Analytics.astro b/src/components/Analytics.astro
index 977c610..428ad4f 100644
--- a/src/components/Analytics.astro
+++ b/src/components/Analytics.astro
@@ -13,5 +13,5 @@ const { title } = Astro.props;
<!-- GoatCounter -->
<script is:inline data-goatcounter="https://analytics.popov.link/count" src="//gc.zgo.at/count.js"></script>
<noscript>
- <img alt="pixel" src={`https://analytics.popov.link/count?p=${path}&t=${title}`} />
+ <img alt="pixel" src={`https://analytics.popov.link/count?p=${encodeURI(path)}&t=${encodeURI(title)}`} />
</noscript>
diff --git a/src/components/Header.astro b/src/components/Header.astro
index 5b163c8..0f91af3 100644
--- a/src/components/Header.astro
+++ b/src/components/Header.astro
@@ -12,7 +12,7 @@
left: 0;
line-height: 3.5em;
opacity: 0.975;
- position: fixed;
+ position: absolute;
right: 0;
top: 0;
}
@@ -36,6 +36,7 @@
@media (width <=684px) {
header {
box-shadow: none;
+ position: fixed;
}
nav {
@@ -50,6 +51,6 @@
<header>
<nav>
- <a href="/feed.xml">RSS</a>
+ <a href="/">Home</a>
</nav>
</header>