-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yml
45 lines (38 loc) · 1.06 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
site_name: Basisregisters Vlaanderen
site_description: 'Documentation on how to get started building your own base registry.'
site_author: 'agentschap Informatie Vlaanderen'
copyright: 'Copyright (c) agentschap Informatie Vlaanderen'
repo_url: https://github.com/informatievlaanderen/registry-documentation/
repo_name: 'registry-documentation'
remote_branch: 'gh-pages'
remote_name: 'origin'
theme:
name: material
favicon: 'img/favicon.ico'
# logo: 'img/favicon-194x194.png'
logo:
icon: 'library_books'
palette:
primary: 'yellow'
accent: 'yellow'
font:
text: 'Ubuntu'
code: 'Ubuntu Mono'
extra_css:
- 'stylesheets/extra.css'
docs_dir: 'docs'
site_dir: 'site'
use_directory_urls: true
markdown_extensions:
- admonition
- codehilite:
guess_lang: false
- toc:
permalink: true
nav:
- 'Home': 'index.md'
- 'New Registry': 'new-registry.md'
- 'Sending Commands': 'sending-commands.md'
- 'Receiving Commands': 'reacting-to-commands.md'
- 'Storing Events': 'storing-events.md'
- 'Build Script': 'build.md'