| {%- extends 'pydata_sphinx_theme/layout.html' %} |
|
|
| {% block extrahead %} |
| <link rel="canonical" href="https://moabb.neurotechx.com/docs/{{ pagename }}.html" /> |
|
|
| {# --- JSON-LD Structured Data --- #} |
| {% if pagename == 'index' %} |
| <script type="application/ld+json"> |
| { |
| "@context": "https://schema.org", |
| "@type": "SoftwareApplication", |
| "name": "MOABB", |
| "alternateName": "Mother of all BCI Benchmarks", |
| "description": "Open-source Python package for reproducible EEG-based BCI benchmarking. Compare pipelines across 67+ datasets, multiple paradigms, and standardized evaluation strategies.", |
| "url": "https://moabb.neurotechx.com/docs/", |
| "applicationCategory": "Scientific Software", |
| "operatingSystem": "Cross-platform", |
| "programmingLanguage": "Python", |
| "license": "https://opensource.org/licenses/BSD-3-Clause", |
| "offers": { |
| "@type": "Offer", |
| "price": "0", |
| "priceCurrency": "USD" |
| }, |
| "author": { |
| "@type": "Organization", |
| "name": "NeuroTechX", |
| "url": "https://neurotechx.com" |
| }, |
| "codeRepository": "https://github.com/NeuroTechX/moabb", |
| "citation": { |
| "@type": "ScholarlyArticle", |
| "name": "The largest EEG-based BCI reproducibility study for open science: the MOABB benchmark", |
| "identifier": "10.5281/zenodo.10034223" |
| }, |
| "softwareVersion": "{{ version }}", |
| "keywords": ["EEG", "BCI", "brain-computer interface", "benchmark", "motor imagery", "P300", "SSVEP", "neuroscience", "reproducibility", "open science"] |
| } |
| </script> |
| {% elif pagename == 'dataset_summary' %} |
| <script type="application/ld+json"> |
| { |
| "@context": "https://schema.org", |
| "@type": "DataCatalog", |
| "name": "MOABB Dataset Catalog", |
| "description": "Catalog of 67+ open EEG datasets for BCI research, covering Motor Imagery, P300, SSVEP, c-VEP, and Resting State paradigms.", |
| "url": "https://moabb.neurotechx.com/docs/dataset_summary.html", |
| "provider": { |
| "@type": "Organization", |
| "name": "NeuroTechX", |
| "url": "https://neurotechx.com" |
| }, |
| "keywords": ["EEG datasets", "BCI datasets", "open data", "motor imagery", "P300", "SSVEP"] |
| } |
| </script> |
| {% elif pagename.startswith('generated/moabb.datasets.') %} |
| <script type="application/ld+json"> |
| { |
| "@context": "https://schema.org", |
| "@type": "Dataset", |
| "name": "{{ title | replace('moabb.datasets.', '') }}", |
| "description": "EEG dataset for brain-computer interface research, part of the MOABB benchmark suite.", |
| "url": "https://moabb.neurotechx.com/docs/{{ pagename }}.html", |
| "license": "https://opensource.org/licenses/BSD-3-Clause", |
| "isPartOf": { |
| "@type": "DataCatalog", |
| "name": "MOABB Dataset Catalog", |
| "url": "https://moabb.neurotechx.com/docs/dataset_summary.html" |
| }, |
| "creator": { |
| "@type": "Organization", |
| "name": "NeuroTechX", |
| "url": "https://neurotechx.com" |
| } |
| } |
| </script> |
| {% endif %} |
|
|
| {# BreadcrumbList for all non-homepage pages #} |
| {% if pagename != 'index' %} |
| <script type="application/ld+json"> |
| { |
| "@context": "https://schema.org", |
| "@type": "BreadcrumbList", |
| "itemListElement": [ |
| { |
| "@type": "ListItem", |
| "position": 1, |
| "name": "MOABB", |
| "item": "https://moabb.neurotechx.com/docs/" |
| }, |
| { |
| "@type": "ListItem", |
| "position": 2, |
| "name": "{{ title }}", |
| "item": "https://moabb.neurotechx.com/docs/{{ pagename }}.html" |
| } |
| ] |
| } |
| </script> |
| {% endif %} |
|
|
| {{ super() }} |
| {% endblock %} |
|
|
| {% block docs_body %} |
| <div> |
| {% if pagename == 'index' %} |
| {%- include 'homepage.html' -%} |
| {% endif %} |
| {% block body %} {% endblock %} |
| </div> |
| {% endblock %} |
|
|