This repository contains the source of the documentation for ICHEC's national computational service platforms, which include access to supercomputing resources, support on softwares, and help pages for running simulations.
If you find something worth adding, or mistakes in the content, please see the CONTRIBUTING page to make suggestion or contribution.
This website is created using Jupyterbook, based on sphinx. See the Jupyterbook for more details. The source for this website uses MyST Markdown.
The structure of the files looks like follows -
(web) 👽 618-rajarshi 0 (main)✗ tree .
.
├── README.md
├── _config.yml
├── _static
│ └── style.css
├── _toc.yml
├── contact-us.md
├── index.md
├── interim-service.md
├── logo.png
├── lxp
│ └── introduction.md
├── national-hpc-service.md
├── references.bib
├── requirements.txt
└── scratch.md
...There are three types of files -
-
YAML files, with extension
.ymlwhich are used to define structure and build process of the pages._config.ymlfile defines all the configurational options for building the pages, and_toc.ymlfile defines the table of contents, and structure of the documents. -
CSS files, primarily stored in
_staticfolder, and define the appearance settings for the webpages. -
Markdown files, with
.mdextension. These are primarily ones that contain the documentation information. Jupyterbook follows MyST format, which is quite feature rich for building pages and pdfs of the technical documents. Checkout the MyST features here.