Remove trailing to home page in links
This commit is contained in:
parent
99e0fd6bc7
commit
1c85884f70
|
@ -25,7 +25,7 @@ const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
|||
{
|
||||
(!hideHomeButton || backlinks.length > 0) && (
|
||||
<div id="left" class="hide-scrollbar">
|
||||
<a href={getLocalizedUrl("/")} class="pressable-label">
|
||||
<a href={getLocalizedUrl("")} class="pressable-label">
|
||||
<Icon name="material-symbols:home" width={16} height={16} />
|
||||
<p>{t("home.title")}</p>
|
||||
</a>
|
||||
|
|
|
@ -12,7 +12,7 @@ const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
|||
<div id="text-container">
|
||||
<h1 class="font-serif font-5xl">404</h1>
|
||||
<h2 class="font-4xl">Not found</h2>
|
||||
<a href={getLocalizedUrl("/")}>
|
||||
<a href={getLocalizedUrl("")}>
|
||||
<Button icon="material-symbols:home" title={t("home.title")} />
|
||||
</a>
|
||||
</div>
|
||||
|
|
|
@ -24,7 +24,7 @@ const { t, getLocalizedUrl } = await getI18n(Astro.locals.currentLocale);
|
|||
website technical administrator
|
||||
</a>.
|
||||
</p>
|
||||
<a href={getLocalizedUrl("/")}>
|
||||
<a href={getLocalizedUrl("")}>
|
||||
<Button icon="material-symbols:home" title={t("home.title")} />
|
||||
</a>
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue