This repo runs the Scientific Computing in Rust 2023 website.
To build the website run:
python builder/build.py
The HTML website will be created in a new folder called _html
. To locally view the build website,
you can run:
cd _html
python -m http.server
To edit the website, you may need to edit files in a range of locations:
- The
builder
folder contains the Python scripts that convert the input files into a HTML website. - The
files
folder contains non-HTML files for the website (eg image, CSS style files). These will be copied into the_html
folder when the website is built. - The
pages
folder contains markdown files for pages on the website. The filefilename.md
will becomefilename.html
when the website is built. - The
talks
folder contains yaml files for the talks and the talk timetable. - The
template
folder contains html files that form the template for each html page.