Compare commits

...

3 Commits

Author SHA1 Message Date
Anton Pogrebnjak cd252fc6ae Added fediverse creator meta tag 2026-05-02 13:15:52 +02:00
Anton Pogrebnjak 31e378727d Made internal links display absolute 2026-05-02 13:13:29 +02:00
Anton Pogrebnjak 3ae346cbfc Fixed header 2026-05-02 13:12:00 +02:00
2 changed files with 5 additions and 1 deletions
+3
View File
@@ -32,6 +32,9 @@ const { title, description, image = '/logo.png' } = Astro.props;
<meta name="title" content={title} />
<meta name="description" content={description} />
<!-- Fediverse -->
<meta name="fediverse:creator" content="@pantonius@mastodon.social">
<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content={Astro.url} />
+2 -1
View File
@@ -54,7 +54,6 @@ import Socials from "./Socials.astro";
}
.internal-links {
position: absolute;
display: flex;
flex-direction: row;
@@ -62,6 +61,7 @@ import Socials from "./Socials.astro";
width: 100%;
left: 0;
right: 0;
pointer-events: none;
}
.internal-links a {
@@ -69,6 +69,7 @@ import Socials from "./Socials.astro";
color: var(--text);
border-bottom: 4px solid transparent;
text-decoration: none;
pointer-events: auto;
}
.internal-links a.active {