Skip to content

Commit

Permalink
I got some light, maybe there is something wrong wioth the tag order?…
Browse files Browse the repository at this point in the history
… feels like witchcraft
  • Loading branch information
conradolandia committed Feb 24, 2025
1 parent d7b6cee commit b8d9d4e
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions src/lib/components/Metadata.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,6 @@
<meta name="description" content={description} />
<meta name="keywords" content={keywords} />
<meta name="author" content={author} />
<link rel="canonical" href={untrailedUrl} />
<link
rel="alternate"
type="application/rss+xml"
title="Spyder's Blog"
href="{siteUrl}/blog/feed.xml"
/>

<!-- Open Graph / Facebook -->
<meta property="og:type" content="website" />
<meta property="og:url" content={untrailedUrl} />
Expand All @@ -35,7 +27,6 @@
<meta property="og:image:secure_url" content={image} />
<meta property="og:locale" content="en_US" />
<meta property="og:site_name" content="Spyder IDE" />

<!-- Twitter -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content={site} />
Expand All @@ -44,9 +35,15 @@
<meta name="twitter:description" content={description} />
<meta name="twitter:image" content={image} />
<meta name="twitter:image:alt" content={title} />

{#if prism}
<!-- Nord stylesheet for code blocks with prism -->
<link rel="stylesheet" href="/assets/vendor/prism/prism-nord.css" />
{/if}
<link rel="canonical" href={untrailedUrl} />
<link
rel="alternate"
type="application/rss+xml"
title="Spyder's Blog"
href="{siteUrl}/blog/feed.xml"
/>
</svelte:head>

0 comments on commit b8d9d4e

Please sign in to comment.