-
Notifications
You must be signed in to change notification settings - Fork 3
/
mkdocs.yaml
77 lines (69 loc) · 1.95 KB
/
mkdocs.yaml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
# Project information
site_name: Realflare
site_url: https://beatreichenbach.github.io/realflare/
site_author: Beat Reichenbach
site_description: >-
Render complex lens flares from real and accurate lens models using a ray tracing algorithm that simulates light passing through a camera lens.
# Repository
repo_name: beatreichenbach/realflare
repo_url: https://github.com/beatreichenbach/realflare
# Copyright
copyright: Copyright © 2023 Beat Reichenbach
# Configuration
theme:
name: material
features:
- navigation.tabs
- navigation.sections
- navigation.top
- search.suggest
- search.highlight
- content.tabs.link
- content.code.annotation
- content.code.copy
palette:
- scheme: slate
primary: light-blue
accent: blue
font:
text: Roboto
code: Roboto Mono
logo: assets/logo.svg
favicon: assets/favicon.png
custom_dir: docs/overrides
# Customization
extra:
social:
- icon: fontawesome/brands/github-alt
link: https://github.com/beatreichenbach
- icon: fontawesome/brands/linkedin
link: https://www.linkedin.com/in/beatreichenbach
- icon: fontawesome/brands/artstation
link: https://www.artstation.com/beatreichenbach
- icon: fontawesome/brands/twitter
link: https://twitter.com/artofbeat
# Extensions
markdown_extensions:
- admonition
- attr_list
- toc:
permalink: true
- footnotes
# Page tree
nav:
- Home: index.md
- Getting started:
- Installation: installation.md
- Guides:
- Creating a Flare: guides/creating-a-flare.md
- Creating a Lens Model: guides/creating-a-lens-model.md
- Reference:
- Flare: reference/flare.md
- Render: reference/render.md
- Lens Model: reference/lens-model.md
- Presets: reference/presets.md
- Command Line: reference/command_line.md
- Knowledge Base:
- Optics: knowledge/optics.md
- Rendering: knowledge/rendering.md
- Coding: knowledge/coding.md