Source files for group website.
Edit .md files directly to add content. See the examples folder for examples
of allowed markdown syntax (including LaTeX).
To add more pages in the top bar, edit _layout/header.html.
To add news items, make a new .md file in the news folder (see existing
files for adding date etc.).
To build the website locally, install Julia
and then Franklin.jl (here in the @Franklin environment):
julia --project=@Franklin -e 'using Pkg; Pkg.add("Franklin")'Then run the following command to build the website and listen to changes:
julia --project=@Franklin -e 'using Franklin; serve()'You can also make an alias in the .bashrc or .zshrc file, then run
franklin to build the website:
# In .bashrc or .zshrc:
alias franklin="julia --project=@Franklin -e 'using Franklin; serve()'"