File tree Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Expand file tree Collapse file tree 3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -24,12 +24,14 @@ jobs:
24
24
name : github-pages
25
25
url : ${{ steps.deployment.outputs.page_url }}
26
26
runs-on : ubuntu-latest
27
- container : sphinxdoc/sphinx
28
27
steps :
29
28
- uses : actions/checkout@v4
29
+ with :
30
+ lfs : true
30
31
- uses : actions/configure-pages@v5
31
32
- run : unzip fonts.zip
32
33
working-directory : docs/_static/
34
+ - uses : actions/setup-python@v5
33
35
- run : pip install -r requirements.txt && sphinx-build . _build
34
36
working-directory : docs/
35
37
- uses : actions/upload-pages-artifact@v3
Original file line number Diff line number Diff line change
1
+ {% extends "!base.html" %}
2
+ {% block extrahead %}
3
+ < link rel ="preload " href ="_static/fonts/JetBrainsMono/JetBrainsMonoNerdFont-Regular.ttf " as ="font " type ="font/ttf " crossorigin />
4
+ < link rel ="preload " href ="_static/fonts/JetBrainsMono/JetBrainsMonoNerdFont-Italic.ttf " as ="font " type ="font/ttf " crossorigin />
5
+ < link rel ="preload " href ="_static/fonts/JetBrainsMono/JetBrainsMonoNerdFont-Bold.ttf " as ="font " type ="font/ttf " crossorigin />
6
+ < link rel ="preload " href ="_static/fonts/JetBrainsMono/JetBrainsMonoNerdFont-BoldItalic.ttf " as ="font " type ="font/ttf " crossorigin />
7
+ < link rel ="preload " href ="_static/fonts/Signika/Signika-Regular.ttf " as ="font " type ="font/ttf " crossorigin />
8
+ < link rel ="preload " href ="_static/fonts/Signika/Signika-Bold.ttf " as ="font " type ="font/ttf " crossorigin />
9
+ {{ super() }}
10
+ {% endblock %}
Original file line number Diff line number Diff line change 29
29
html_use_index = False
30
30
31
31
myst_heading_anchors = 3
32
+ templates_path = ["_templates" ]
You can’t perform that action at this time.
0 commit comments