Skip to content

Commit 9be0fa4

Browse files
committed
Update head
1 parent 96a0952 commit 9be0fa4

3 files changed

Lines changed: 7 additions & 8 deletions

File tree

src/components/BaseHead.astro

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,6 @@ const { title, description, image = "/social-card.png" } = Astro.props;
2020
<meta name="build-version" content={gitVersion} />
2121
<meta name="build-timestamp" content={buildTimestamp} />
2222
<link rel="sitemap" href="/sitemap-index.xml" />
23-
<link rel="mask-icon" href="/maskable_icon.png" color="#f5e5d6">
24-
<meta name="msapplication-TileColor" content="#f5e5d6">
25-
<meta name="theme-color" content="#f5e5d6">
26-
2723

2824
<meta name="referrer" content="no-referrer-when-downgrade" />
2925

src/layouts/Layout.astro

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,6 @@ const externalDomain = new URL(Astro.site || "").hostname;
2828
<head>
2929
<BaseHead title={title} description={description} />
3030
<slot name="head" />
31-
32-
<link rel="manifest" href="/manifest.json" />
33-
<meta name="theme-color" content="#6200ee" />
34-
<link rel="apple-touch-icon" href="/icons/icon-192x192.png" />
3531
</Fragment>
3632
</head>
3733
<body>

src/pages/index.astro

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,13 @@ import Subscribe from "@sections/subscribe.astro";
1313
title="EuroPython 2025 | July 14th-20th 2025 | Prague, Czech Republic & Remote"
1414
description="EuroPython is the largest Python conference in Europe. We are looking forward to seeing you in Prague, Czech Republic & Remote from July 14th-20th 2025."
1515
>
16+
<Fragment slot="head">
17+
<link rel="manifest" href="/manifest.json" />
18+
<link rel="apple-touch-icon" href="/icons/icon-192x192.png" />
19+
<link rel="mask-icon" href="/maskable_icon.png" color="#f5e5d6">
20+
<meta name="msapplication-TileColor" content="#f5e5d6">
21+
<meta name="theme-color" content="#f5e5d6">
22+
</Fragment>
1623

1724
<Hero />
1825
<Updates />

0 commit comments

Comments
 (0)