From c91e36eea93d58cffb3fd79c77406f1a96f9fa85 Mon Sep 17 00:00:00 2001 From: Kevin Schneider Date: Fri, 20 Sep 2024 15:03:34 +0200 Subject: [PATCH] #44: link dictionary as resource and in navbar --- src/components/Navbar.astro | 3 ++- src/pages/details/resources.mdx | 4 ++++ src/pages/dictionary/index.astro | 3 +++ src/statics.ts | 1 + 4 files changed, 10 insertions(+), 1 deletion(-) diff --git a/src/components/Navbar.astro b/src/components/Navbar.astro index dccacee..e4bd0d2 100644 --- a/src/components/Navbar.astro +++ b/src/components/Navbar.astro @@ -32,7 +32,8 @@ const links: Link[] = [ {href: URLS.INTERNAL_DEV_TOOLSTACK, text: "Developer Toolstack"}, ]}, ]}, - {href: URLS.INTERNAL_PARTNERS, text: "Partners"} + {href: URLS.INTERNAL_PARTNERS, text: "Partners"}, + {href: URLS.INTERNAL_DICTIONARY, text: "Dictionary"} ] const linksMin: Link[] = [ diff --git a/src/pages/details/resources.mdx b/src/pages/details/resources.mdx index 22b2ee7..cf0f6c3 100644 --- a/src/pages/details/resources.mdx +++ b/src/pages/details/resources.mdx @@ -29,6 +29,10 @@ Some highlighted articles: - [Ontology Service Landscape](https://nfdi4plants.github.io/nfdi4plants.knowledgebase/docs/implementation/OntologyServiceLandscape.html) - [Teaching materials](https://nfdi4plants.github.io/nfdi4plants.knowledgebase/docs/teaching-materials/index.html) +### ARC Dictionary + +A collection of terms and concepts related to the ARC ecosystem. It is available [here]({{INTERNAL_DICTIONARY}}) + ## Educational Videos ### DataPLANT Youtube Channel diff --git a/src/pages/dictionary/index.astro b/src/pages/dictionary/index.astro index aa93615..762a8f7 100644 --- a/src/pages/dictionary/index.astro +++ b/src/pages/dictionary/index.astro @@ -46,6 +46,9 @@ Object.keys(categorizedKeywords).forEach((letter) => {
+

The ARC Dictionary

+

+ The ARC Dictionary is a collection of terms and concepts related to the ARC ecosystem.

    {Object.keys(categorizedKeywords).sort().map((letter) => (
  • diff --git a/src/statics.ts b/src/statics.ts index 887ec51..8b60d78 100644 --- a/src/statics.ts +++ b/src/statics.ts @@ -6,6 +6,7 @@ export enum URLS { INTERNAL_HOME = BASE_PATH, INTERNAL_TOOLS = BASE_PATH + "details/tools-and-services", INTERNAL_PARTNERS = BASE_PATH + "details/partners", + INTERNAL_DICTIONARY = BASE_PATH + "dictionary", INTERNAL_COM_DATA_MANAGEMENT = BASE_PATH + "details/data-management-principle", INTERNAL_COM_TOOLS = BASE_PATH + "details/tools-and-services",