Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
node_modules
dist
dist
.astro
5 changes: 3 additions & 2 deletions src/components/layout/Navigation.astro
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,8 @@ const baseClasses = {

document.querySelectorAll("nav a").forEach((link) => {
const path = link.getAttribute("data-path");
toggleLinkClasses(link, path === currentPath || path === currentHash);
if (!path) return;
toggleLinkClasses(link, currentPath.includes(path.replace("#","")) || currentHash.includes(path));
});
}

Expand Down Expand Up @@ -123,7 +124,7 @@ const baseClasses = {
class={baseClasses.link}
data-path={item.path}
aria-label={item.name}
aria-current={item.path === Astro.url.pathname ? 'page' : undefined}
aria-current={Astro.url.pathname.includes(item.path) ? 'page' : undefined}
>
{item.name}
</a>
Expand Down
2 changes: 1 addition & 1 deletion src/pages/portfolio/projects/ingdoc.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ The **InGDoc** is a community group created in the idea of providing to some big

## 📖 History

Created in 2020 the team was originally founded to follow the <a href="https://zevent.fr/" target="_blank" rel="noopener noreferrer">ZEvent2024</a>. Our first tool was google documents that followed the progress of donation goals and amount raised.
Created in 2020 the team was originally founded to follow the <a href="https://zevent.fr/" target="_blank" rel="noopener noreferrer">ZEvent2020</a>. Our first tool was google documents that followed the progress of donation goals and amount raised.
In **2022** we start collecting more data about streams and create infographics at the end of the different events that we follow.

We have worked along some organisations to create custom tools and we still bring ideas of the community to life.
Expand Down