2
0
Fork 1

Commits vergleichen

...

3 Commits

Autor SHA1 Nachricht Datum
488161794e Improving 404 handling - fixes #28
Einige Prüfungen sind fehlgeschlagen
continuous-integration/drone/push Build is passing
continuous-integration/drone/promote/production Build is failing
2023-07-12 13:09:59 +02:00
f38ff3817d Update .gitignore to reflect latest changes 2023-07-12 13:09:59 +02:00
fbc72b1ee4 [CI SKIP] Moving to dirhtml build 2023-07-12 13:09:59 +02:00
5 geänderte Dateien mit 21 neuen und 6 gelöschten Zeilen

Datei anzeigen

@ -28,7 +28,7 @@ steps:
- cd ~/docs - cd ~/docs
- pip install --upgrade pip - pip install --upgrade pip
- pip install -r requirements.txt - pip install -r requirements.txt
- make html - make dirhtml
trigger: trigger:
event: event:
@ -69,7 +69,7 @@ steps:
- cd ~/docs - cd ~/docs
- pip install --upgrade pip - pip install --upgrade pip
- pip install -r requirements.txt - pip install -r requirements.txt
- make html - make dirhtml
- name: deploy to staging - name: deploy to staging
image: appleboy/drone-scp image: appleboy/drone-scp
volumes: volumes:
@ -127,7 +127,7 @@ steps:
- cd ~/docs - cd ~/docs
- pip install --upgrade pip - pip install --upgrade pip
- pip install -r requirements.txt - pip install -r requirements.txt
- make html - make dirhtml
- name: deploy to production - name: deploy to production
image: appleboy/drone-scp image: appleboy/drone-scp
volumes: volumes:

1
.gitignore gevendort
Datei anzeigen

@ -1,3 +1,4 @@
build/html/ build/html/
build/dirhtml/
.venv/ .venv/
.vscode/ .vscode/

Datei anzeigen

@ -1,2 +1,3 @@
furo==2023.5.20 furo==2023.5.20
sphinx-intl==2.1.0 sphinx-intl==2.1.0
sphinx-notfound-page==0.8.3

8
source/404.rst Normale Datei
Datei anzeigen

@ -0,0 +1,8 @@
:orphan:
Seite nicht gefunden
====================
Die angeforderte Seite konnte nicht gefunden werden. Sie können unsere Suche in der Navigation verwenden, um Inhalte zu finden.
Falls Sie Verbesserungsvorschläge einreichen wollen, erstellen Sie bitte einen `Beitrag in der Forge <https://forge.nick-slowinski.de/nick-slowinski.de/docs/issues/>`_ oder tragen Sie direkt bei.

Datei anzeigen

@ -13,7 +13,9 @@ author = 'Nick Slowinski'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration # https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [] extensions = [
'notfound.extension',
]
templates_path = ['_templates'] templates_path = ['_templates']
exclude_patterns = [] exclude_patterns = []
@ -33,4 +35,7 @@ gettext_compact = False # optional.
html_theme_options = { html_theme_options = {
"announcement": "<em>Diese Dokumentation befindet sich noch im Aufbau und wird nach für nach vervollständigt.</em>", "announcement": "<em>Diese Dokumentation befindet sich noch im Aufbau und wird nach für nach vervollständigt.</em>",
"source_edit_link": "https://forge.nick-slowinski.de/nick-slowinski.de/docs/_edit/main/source/{filename}", "source_edit_link": "https://forge.nick-slowinski.de/nick-slowinski.de/docs/_edit/main/source/{filename}",
} }
# 404 extension
notfound_urls_prefix = None