diff --git a/config/_default/menus.yaml b/config/_default/menus.yaml index be2c05d..1d0b318 100644 --- a/config/_default/menus.yaml +++ b/config/_default/menus.yaml @@ -25,20 +25,16 @@ main: weight: 1 url: "nwb-software/" parent: "Software & Tools" - - name: "NWB Tools" - weight: 2 - url: "tools/" - parent: "Software & Tools" - name: "Core Tools" - weight: 3 + weight: 2 url: "tools/core/" parent: "Software & Tools" - name: "Acquisition Tools" - weight: 4 + weight: 3 url: "tools/acquisition/" parent: "Software & Tools" - name: "Analysis Tools" - weight: 5 + weight: 4 url: "tools/analysis/" parent: "Software & Tools" diff --git a/content/nwb-software/_index.md b/content/nwb-software/_index.md index 981ff4c..6d75fb5 100644 --- a/content/nwb-software/_index.md +++ b/content/nwb-software/_index.md @@ -1,4 +1,22 @@ --- + +disclaimer: Reference herein to any specific product, process, or service by its trade name, trademark, manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favoring by the NWB development team, United States Government or any agency thereof, or The Regents of the University of California. Use of the NeurodataWithoutBorders name for endorsements is prohibited. +# NWB Tools Section Added +community_tools: + enable: true + title: Community Tools + content: Listed below are tools for working with NWB data. This is not a comprehensive list of NWB tools. Many of these tools are built and supported by other groups, and are in active development. + image: /images/nwb-tools-arch.png + categories: + - title: Core NWB Tools + description: Key software packages of the core NWB software stack + url: "/tools/core/" + - title: Acquisition and Control Tools + description: Tools for data acquisition and experimental control + url: "/tools/acquisition/" + - title: Analysis and Visualization Tools + description: Tools for data analysis, visualization, and exploration + url: "/tools/analysis/" title: The NWB Software
Ecosystem software_types: enable: true @@ -107,4 +125,3 @@ sections: href='http://nwb-schema.readthedocs.io/en/stable'>Data Standard Schema Documentation

Sources (GitHub) --- - diff --git a/content/tools/_index.md b/content/tools/_index.md deleted file mode 100644 index fe8bd4c..0000000 --- a/content/tools/_index.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -title: "NWB Tools" -description: "A collection of tools for working with NWB data" ---- - -This page is a collection of tools we are cataloging as a convenience reference for NWB users. This is not a comprehensive list of NWB tools. Many of these tools are built and supported by other groups, and are in active development. - -## Tool Categories - -- [Core NWB Tools]({{< ref "tools/core" >}}) - Key software packages of the core NWB software stack -- [Acquisition and Control Tools]({{< ref "tools/acquisition" >}}) - Tools for data acquisition and experimental control -- [Analysis and Visualization Tools]({{< ref "tools/analysis" >}}) - Tools for data analysis, visualization, and exploration - -**Disclaimer:** Reference herein to any specific product, process, or service by its trade name, trademark, manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favoring by the NWB development team, United States Government or any agency thereof, or The Regents of the University of California. Use of the NeurodataWithoutBorders name for endorsements is prohibited. diff --git a/content/tools/acquisition/_index.md b/content/tools/acquisition/_index.md index d7d5eef..fde4395 100644 --- a/content/tools/acquisition/_index.md +++ b/content/tools/acquisition/_index.md @@ -14,3 +14,5 @@ description: "Tools for data acquisition and experimental control" ## Brain Data Modeling and Simulation {{< tool-grid category="modeling" >}} + +**Disclaimer:** Reference herein to any specific product, process, or service by its trade name, trademark, manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favoring by the NWB development team, United States Government or any agency thereof, or The Regents of the University of California. Use of the NeurodataWithoutBorders name for endorsements is prohibited. diff --git a/content/tools/analysis/_index.md b/content/tools/analysis/_index.md index 766d773..9f01d12 100644 --- a/content/tools/analysis/_index.md +++ b/content/tools/analysis/_index.md @@ -30,3 +30,5 @@ description: "Tools for data analysis, visualization, and exploration" ## Data Archive, Publication, and Management {{< tool-grid category="data-management" >}} + +**Disclaimer:** Reference herein to any specific product, process, or service by its trade name, trademark, manufacturer, or otherwise, does not constitute or imply its endorsement, recommendation, or favoring by the NWB development team, United States Government or any agency thereof, or The Regents of the University of California. Use of the NeurodataWithoutBorders name for endorsements is prohibited. diff --git a/layouts/nwb-software/list.html b/layouts/nwb-software/list.html index 7e14779..0ab64a0 100644 --- a/layouts/nwb-software/list.html +++ b/layouts/nwb-software/list.html @@ -136,17 +136,23 @@

{{ .title | markdownify }}

{{ .title | markdownify }}

{{ .content | markdownify }}

+ + {{ if .image }} +
+ NWB Tools Architecture +
+ {{ end }}
- {{ with .tools }} -
+ + {{ with .categories }} +
{{ range . }} -
-
-
-
- -
-

{{ .title | markdownify }}

+
+
+
+

{{ .title | markdownify }}

+

{{ .description | markdownify }}

+ View Tools
@@ -158,4 +164,4 @@

{{ .title | markdownify }}

{{ end }} {{ end }} -{{ end }} \ No newline at end of file +{{ end }} diff --git a/static/images/nwb-tools-arch.png b/static/images/nwb-tools-arch.png new file mode 100644 index 0000000..86bc81f Binary files /dev/null and b/static/images/nwb-tools-arch.png differ