-
Notifications
You must be signed in to change notification settings - Fork 28
/
mkdocs.yml
33 lines (29 loc) · 901 Bytes
/
mkdocs.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
site_name: CTF Gameserver
site_description: Documentation for FAUST CTF Gameserver
site_author: FAUST -- FAU Security Team
site_url: https://ctf-gameserver.org
repo_url: https://github.com/fausecteam/ctf-gameserver
# Disable "Edit in GitHub"
edit_uri: ''
theme:
name: mkdocs
nav_style: light
# This would load third-party JavaScript, better disable it
highlightjs: False
nav:
- Home: index.md
- Architecture: architecture.md
- Installation: installation.md
- Checkers:
- General: checkers/index.md
- checkers/python-library.md
- checkers/go-library.md
- Submission: submission.md
- Observability: observability.md
# Use copyright field to add links to the footer
copyright: '<a href="https://faustctf.net/privacy/">Privacy</a> | <a href="https://faustctf.net/legal/">Legal</a>'
site_dir: docs_site
markdown_extensions:
- toc:
permalink: True
- admonition