Skip to content

Commit

Permalink
#44: link dictionary as resource and in navbar
Browse files Browse the repository at this point in the history
  • Loading branch information
kMutagene committed Sep 20, 2024
1 parent e3d1c8c commit c91e36e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/Navbar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -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[] = [
Expand Down
4 changes: 4 additions & 0 deletions src/pages/details/resources.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
3 changes: 3 additions & 0 deletions src/pages/dictionary/index.astro
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,9 @@ Object.keys(categorizedKeywords).forEach((letter) => {
<Layout title="Dictionary">
<div class="flex items-center flex-col grow p-3 py-5 lg:py-16">
<article class="prose lg:prose-lg w-full">
<h1>The ARC Dictionary</h1>
<p>
The ARC Dictionary is a collection of terms and concepts related to the ARC ecosystem.
<ul>
{Object.keys(categorizedKeywords).sort().map((letter) => (
<li>
Expand Down
1 change: 1 addition & 0 deletions src/statics.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit c91e36e

Please sign in to comment.