9d25581f3c
The current .png is presumably the wrong shape and looks flattened. Plus, mkdocs complained that 'site_favicon' was an unrecognised configuration name, so I used the method described in the docs instead: https://www.mkdocs.org/user-guide/customizing-your-theme/#using-the-theme_dir
35 lines
640 B
YAML
35 lines
640 B
YAML
site_name: GHCup
|
|
site_url: https://www.haskell.org/ghcup
|
|
site_description: GHCup is the main installer for the general purpose language Haskell.
|
|
site_author: GHCup Team
|
|
|
|
repo_url: https://github.com/haskell/ghcup-hs
|
|
|
|
theme:
|
|
name: mkdocs
|
|
locale: en
|
|
custom_dir: docs/overrides
|
|
|
|
nav:
|
|
- Home: index.md
|
|
- "Installation": install.md
|
|
- "First steps": steps.md
|
|
- "User Guide": guide.md
|
|
- "Developer Guide": dev.md
|
|
- About: about.md
|
|
|
|
extra_css:
|
|
- css/extra.css
|
|
|
|
extra_javascript:
|
|
- javascripts/extra.js
|
|
|
|
markdown_extensions:
|
|
- toc:
|
|
permalink:
|
|
- admonition
|
|
- attr_list
|
|
- def_list
|
|
- meta
|
|
|