Skip to content

Commit

Permalink
fix all URLs
Browse files Browse the repository at this point in the history
  • Loading branch information
yaperson committed Nov 29, 2023
1 parent 2be0a3e commit 54922ef
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/components/BlogPost.astro
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ const {url, title, tags} = Astro.props;
<div class="blog__tags">
{
tags.map((tag) => (
<a class="tag" href={`/tags/${tag}`}>
<a class="tag" href={`/veille-astro/tags/${tag}`}>
<i class="fi fi-rr-tags" /> {tag}
</a>
))
Expand Down
2 changes: 1 addition & 1 deletion src/components/Footer.astro
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ const username = ["yaperson"];
<div class="social__container">
<Social platform="github" username="yaperson" />
<Social platform="linkedin" username="in/yanis-legrand" />
<a class="social" href="/rss.xml" target="_blank" title="Flux RSS"><i class="fi fi-rr-wifi"></i></a>
<a class="social" href="/veille-astro/rss.xml" target="_blank" title="Flux RSS"><i class="fi fi-rr-wifi"></i></a>
</div>
</footer>

Expand Down
2 changes: 1 addition & 1 deletion src/layouts/BaseLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const {pageTitle} = Astro.props;
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="icon" type="image/svg+xml" href="/favicon.svg" />
<link rel="icon" type="image/svg+xml" href="/veille-astro/favicon.svg" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>{pageTitle}</title>
Expand Down
2 changes: 1 addition & 1 deletion src/layouts/MarkdownPostLayout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const { frontmatter } = Astro.props;
<div class="tags">
{
frontmatter.tags.map((tag) => (
<a class="tag" href={`/tags/${tag}`}>
<a class="tag" href={`/veille-astro/tags/${tag}`}>
<i class="fi fi-rr-tags" /> {tag}
</a>
))
Expand Down
2 changes: 1 addition & 1 deletion src/pages/tags/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ const pageTitle = "Tags page";
{
tags.map((tag) => (
<p class="tag">
<a href={`/tags/${tag}`}>
<a href={`/veille-astro/tags/${tag}`}>
<i class="fi fi-rr-tags" /> {tag}
</a>
</p>
Expand Down

0 comments on commit 54922ef

Please sign in to comment.