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
15 changes: 11 additions & 4 deletions config/_default/menus.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,12 +76,16 @@ main:
weight: 1
url: "publications/"
parent: "Resources"
- name: "Grants & Projects"
- name: "Online Resources"
weight: 2
url: "online-resources/"
parent: "Resources"
- name: "Grants & Projects"
weight: 3
url: "grants-and-projects/"
parent: "Resources"
- name: "Policies"
weight: 3
weight: 4
url: "policies/"
parent: "Resources"

Expand Down Expand Up @@ -127,9 +131,12 @@ resources:
- name: "Publications"
weight: 1
url: "/publications"
- name: "Grants & Projects"
- name: "Online Resources"
weight: 2
url: "/online-resources"
- name: "Grants & Projects"
weight: 3
url: "/grants-and-projects"
- name: "Policies"
weight: 3
weight: 4
url: "/policies"
75 changes: 75 additions & 0 deletions content/online-resources/_index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,75 @@
---
title: "Online Resources"
weight: 4
resources_section:
enable: true
title: "Project Websites"
content: "Find information about NWB on our various websites"
boxes:
- title: "Main Website"
content: "The primary NWB project website"
image: "/images/portfolio.png"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I would suggest to use the NWB logo as the image to show show for the main website.

url: "https://www.nwb.org/"
- title: "Hackathons"
content: "NWB Hackathon events and information"
image: "/images/hackathon_icon.png"
url: "https://neurodatawithoutborders.github.io/nwb_hackathons/"
- title: "NWB Neurodata Extension (NDX) Catalog"
content: "Discover NWB extensions"
image: "/images/ndxcatalog_logo_framed.png"
url: "https://nwb-extensions.github.io/"

support_section:
enable: true
title: "Online Support and Social Media"
content: "Connect with the NWB community through various online platforms"
boxes:
- title: "Helpdesk"
content: "Get support from the NWB community"
image: "/images/github.png"
url: "https://github.com/NeurodataWithoutBorders/helpdesk/discussions"
- title: "Mailing List"
content: "Subscribe to NWB announcements"
image: "/images/mail.png"
url: "https://mailchi.mp/fe2a9bc55a1a/nwb-signup"
- title: "Slack"
content: "Join the NWB community on Slack"
image: "/images/slack.png"
url: "https://bit.ly/3jK6Gm1"
- title: "Twitter"
content: "Follow NWB on Twitter"
image: "/images/twitter.png"
url: "https://twitter.com/neurodatawb"
- title: "Bluesky"
content: "Follow NWB on Bluesky"
image: "/images/Bluesky_Logo.svg"
url: "https://bsky.app/profile/nwb.org"
- title: "YouTube"
content: "Watch NWB tutorials and presentations"
image: "/images/youtube.png"
url: "https://www.youtube.com/c/NeurodataWithoutBorders"

training_section:
enable: true
title: "General Training"
content: "Learn about NWB through training resources"
boxes:
- title: "INCF Training Space"
content: "NWB training resources on INCF"
image: "/images/incf.png"
url: "https://training.incf.org/collection/neurodata-without-borders-neurophysiology-nwbn"
- title: "NWB Overview"
content: "Comprehensive overview of NWB"
image: "/images/nwb-guide.png"
url: "https://nwb-overview.readthedocs.io/"

docs_section:
enable: true
title: "Core Tool Documentation"
content: "Access documentation for NWB core tools"
boxes:
- title: "Core Tools"
content: "Documentation for NWB core tools"
image: "/images/r-docs.png"
url: "https://neurodatawithoutborders.github.io/tools/core/"
---
13 changes: 0 additions & 13 deletions content/publications/online-and-social-media.md

This file was deleted.

123 changes: 123 additions & 0 deletions layouts/online-resources/list.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,123 @@
{{ define "main" }}
{{/* Hero Section */}}
<section class="hero teamSect d-flex justify-content-center align-items-center position-relative"
style="background: radial-gradient(#063053e5, #062e52e5), url('/images/essentials/aboutBg.png');">
<h1 class="inter-700 text-48 text-white text-center z-4">{{ .Title | markdownify }}</h1>
<div class="position-absolute ellipses">
<img src="/images/essentials/ellipses.png" alt="" class="ellipseW">
</div>
</section>
{{/* End Hero Section */}}

{{/* Project Websites Section */}}
{{ with .Params.resources_section }}
{{ if .enable }}
<section class="section bg-dark-100">
<div class="container-lg">
<h3 class="inter-700 text-40 dark-900 mb-3">{{ .title | markdownify }}</h3>
<p class="inter-400 text-16 dark-700 lh-base">{{ .content | markdownify }}</p>
<div class="row g-4 justify-content-center pt-4">
{{ range .boxes }}
<a href="{{ .url }}" class="col-12 col-sm-6 col-md-4 col-lg-4" target="_blank">
<div class="bg-white h-100 rounded-3 p-4 shadow-sm">
<div class="d-flex flex-column row-gap-4">
<img src="{{ .image }}" alt="" width="40">
<div class="">
<h5 class="inter-700 text-18 dark-900 mb-2">{{ .title | markdownify }}</h5>
<p class="inter-400 text-14 dark-700">{{ .content | markdownify }}</p>
</div>
</div>
</div>
</a>
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}
{{/* End Project Websites Section */}}

{{/* Support and Social Media Section */}}
{{ with .Params.support_section }}
{{ if .enable }}
<section class="section bg-white">
<div class="container-lg">
<h3 class="inter-700 text-40 dark-900 mb-3">{{ .title | markdownify }}</h3>
<p class="inter-400 text-16 dark-700 lh-base">{{ .content | markdownify }}</p>
<div class="row g-4 justify-content-center pt-4">
{{ range .boxes }}
<a href="{{ .url }}" class="col-12 col-sm-6 col-md-4 col-lg-4" target="_blank">
<div class="bg-dark-100 h-100 rounded-3 p-4 shadow-sm">
<div class="d-flex flex-column row-gap-4">
<img src="{{ .image }}" alt="" width="40">
<div class="">
<h5 class="inter-700 text-18 dark-900 mb-2">{{ .title | markdownify }}</h5>
<p class="inter-400 text-14 dark-700">{{ .content | markdownify }}</p>
</div>
</div>
</div>
</a>
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}
{{/* End Support and Social Media Section */}}

{{/* Training Section */}}
{{ with .Params.training_section }}
{{ if .enable }}
<section class="section bg-dark-100">
<div class="container-lg">
<h3 class="inter-700 text-40 dark-900 mb-3">{{ .title | markdownify }}</h3>
<p class="inter-400 text-16 dark-700 lh-base">{{ .content | markdownify }}</p>
<div class="row g-4 justify-content-center pt-4">
{{ range .boxes }}
<a href="{{ .url }}" class="col-12 col-sm-6 col-md-4 col-lg-4" target="_blank">
<div class="bg-white h-100 rounded-3 p-4 shadow-sm">
<div class="d-flex flex-column row-gap-4">
<img src="{{ .image }}" alt="" width="40">
<div class="">
<h5 class="inter-700 text-18 dark-900 mb-2">{{ .title | markdownify }}</h5>
<p class="inter-400 text-14 dark-700">{{ .content | markdownify }}</p>
</div>
</div>
</div>
</a>
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}
{{/* End Training Section */}}

{{/* Documentation Section */}}
{{ with .Params.docs_section }}
{{ if .enable }}
<section class="section bg-white">
<div class="container-lg">
<h3 class="inter-700 text-40 dark-900 mb-3">{{ .title | markdownify }}</h3>
<p class="inter-400 text-16 dark-700 lh-base">{{ .content | markdownify }}</p>
<div class="row g-4 justify-content-center pt-4">
{{ range .boxes }}
<a href="{{ .url }}" class="col-12 col-sm-6 col-md-4 col-lg-4" target="_blank">
<div class="bg-dark-100 h-100 rounded-3 p-4 shadow-sm">
<div class="d-flex flex-column row-gap-4">
<img src="{{ .image }}" alt="" width="40">
<div class="">
<h5 class="inter-700 text-18 dark-900 mb-2">{{ .title | markdownify }}</h5>
<p class="inter-400 text-14 dark-700">{{ .content | markdownify }}</p>
</div>
</div>
</div>
</a>
{{ end }}
</div>
</div>
</section>
{{ end }}
{{ end }}
{{/* End Documentation Section */}}
{{ end }}
4 changes: 4 additions & 0 deletions static/images/Bluesky_Logo.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added static/images/hackathon_icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading