Skip to content

Commit

Permalink
source/_conf.py: Update templates_path & html_static_path
Browse files Browse the repository at this point in the history
  • Loading branch information
Kjuly committed May 15, 2024
1 parent 42fe87a commit f62e3a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ Sphinx docs template, including automated deployment workflows.

Default folder structure in this template:
```sh
_static/ # Host shared css, image files.
_templates/ # Host template files.

source/
_conf.py # Shared base config file.

Expand Down
4 changes: 2 additions & 2 deletions source/_conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
"sphinx_design",
]

templates_path = ['_templates']
templates_path = ['../../_templates']
exclude_patterns = [
".DS_Store",
]
Expand All @@ -33,7 +33,7 @@

html_title = "Sphinx Template"
html_theme = 'furo'
html_static_path = ['_static']
html_static_path = ['../../_static']

html_css_files = [
"css/custom.css",
Expand Down

0 comments on commit f62e3a4

Please sign in to comment.