-
Notifications
You must be signed in to change notification settings - Fork 106
/
mkdocs.yml
47 lines (40 loc) · 1.1 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
46
47
# Project Information
site_name: PagerDuty Security Training
site_description: Public versions of PagerDuty's employee security training courses.
site_author: PagerDuty, Inc.
site_url: https://sudo.pagerduty.com/
# Repository
repo_url: https://github.com/pagerduty/security-training
# Copyright
copyright: 'Copyright © PagerDuty, Inc.'
# Theme
theme:
name: pagerduty
title: 'Security Training'
custom_dir: overrides # We add some extra things to the homepage
# Contents
nav:
- Overview: 'index.md'
- For Everyone: 'for_everyone/index.md'
- For Everyone (Part II): 'for_everyone_part_ii/index.md'
- For Everyone (Part III): 'for_everyone_part_iii/index.md'
- For Engineers: 'for_engineers/index.md'
# Analytics
google_analytics: ['UA-8759953-1', 'auto']
# Extensions
markdown_extensions:
- toc:
permalink: '#'
- sane_lists:
- admonition:
- meta:
- pymdownx.details:
- pymdownx.extra:
- pymdownx.mark:
- pymdownx.caret:
- pymdownx.tilde:
- pymdownx.highlight:
- pymdownx.superfences:
- pymdownx.tabbed:
# Development URL, bind to local only.
dev_addr: '127.0.0.1:8000'