-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconf.py
79 lines (66 loc) · 2.08 KB
/
conf.py
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
78
79
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation: https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
project = "TJ Physics Olympiad"
copyright = "%Y, TJ Physics Team Officers"
author = "TJ Physics Team Officers"
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"myst_parser",
]
templates_path = ["_templates"]
exclude_patterns = [
"_build",
".venv",
".git",
".github",
"Thumbs.db",
".DS_Store",
"README.md",
"LICENSE.md",
]
myst_enable_extensions = [
"amsmath",
"attrs_inline",
"colon_fence",
"dollarmath",
]
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_title = project
html_theme = "pydata_sphinx_theme"
html_static_path = ["_static"]
html_favicon = "_static/favicon.png"
html_show_sourcelink = False
html_theme_options = {
# Uncomment once date is finalized
# "announcement": "The TJ Physics Team Olympiad ends on ...",
"icon_links": [
{
"name": "GitHub",
"url": "https://github.com/tjphysicsteam/tjpho",
"icon": "fa-brands fa-github",
},
{
"name": "Instagram",
"url": "https://www.instagram.com/tjpho/",
"icon": "fa-brands fa-instagram",
},
{
"name": "Facebook",
"url": "https://www.facebook.com/groups/tjphysicsteam/",
"icon": "fa-brands fa-facebook-f",
},
],
"footer_start": ["copyright"],
"footer_end": [],
}
html_sidebars = {
"**": ["description.html"],
# don't use description.html for the main page
"index": [],
}
html_css_files = ["custom.css"]