From 76a0482887b5e3b1b62a42818385651d742ef501 Mon Sep 17 00:00:00 2001 From: Eljakim Herrewijnen Date: Sun, 7 Apr 2024 20:45:38 +0200 Subject: [PATCH] initial --- .gitignore | 1 + .vscode/settings.json | 3 ++ Makefile | 24 +++++++++++++++ make.bat | 35 ++++++++++++++++++++++ source/conf.py | 32 ++++++++++++++++++++ source/index.rst | 14 +++++++++ source/locatie.rst | 56 +++++++++++++++++++++++++++++++++++ source/meenemen.rst | 68 +++++++++++++++++++++++++++++++++++++++++++ 8 files changed, 233 insertions(+) create mode 100644 .gitignore create mode 100644 .vscode/settings.json create mode 100644 Makefile create mode 100644 make.bat create mode 100644 source/conf.py create mode 100644 source/index.rst create mode 100644 source/locatie.rst create mode 100644 source/meenemen.rst diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..567609b --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +build/ diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 0000000..a7d0fc7 --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "esbonio.sphinx.confDir": "" +} \ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..2cea83f --- /dev/null +++ b/Makefile @@ -0,0 +1,24 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SPHINXAUTOBUILD = sphinx-autobuild +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +livehtml: + @$(SPHINXAUTOBUILD) -b html "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) --port 54543 \ No newline at end of file diff --git a/make.bat b/make.bat new file mode 100644 index 0000000..747ffb7 --- /dev/null +++ b/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/source/conf.py b/source/conf.py new file mode 100644 index 0000000..cb50a63 --- /dev/null +++ b/source/conf.py @@ -0,0 +1,32 @@ +# 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 = 'Vakantie 2024' +copyright = '2024, Eljakim' +author = 'Eljakim' + +# -- General configuration --------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration + +extensions = [ 'myst_parser', + 'sphinx_rtd_theme', + 'sphinx.ext.todo', + 'sphinxcontrib.confluencebuilder', + "sphinxcontrib.drawio", +] + +templates_path = ['_templates'] +exclude_patterns = [] + + + +# -- Options for HTML output ------------------------------------------------- +# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output + +html_theme = 'sphinx_rtd_theme' +html_static_path = ['_static'] diff --git a/source/index.rst b/source/index.rst new file mode 100644 index 0000000..f78986f --- /dev/null +++ b/source/index.rst @@ -0,0 +1,14 @@ +.. Vakantie 2024 documentation master file, created by + sphinx-quickstart on Sat Apr 6 12:14:43 2024. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Vakantie 2024 +============= + +.. toctree:: + :maxdepth: 2 + :caption: Details: + + meenemen.rst + locatie.rst \ No newline at end of file diff --git a/source/locatie.rst b/source/locatie.rst new file mode 100644 index 0000000..833b855 --- /dev/null +++ b/source/locatie.rst @@ -0,0 +1,56 @@ +======= +locatie +======= +Doel van de vakantie is + +.. raw:: html + + + +Met alle hernhutter verleden die in de omgeving ligt. + +Huisje +====== +`Het huise `_ is geboekt met booking. + +.. raw:: html + + + +Bedden +------ +Er zijn 4 slaapkamers met 2 persoons bedden. + +Vervoer +------- +We gaan met 2 auto's. + +Attracties +========== + +weer +---- +Het weer in `noordrijn westfalen `_. + +Arolsen Kasteel +--------------- + +.. raw:: html + + + +Eisenberg Kasteel +----------------- + +.. raw:: html + + + + +Curioseum +--------- +Soort museum met random dingen + +.. raw:: html + + \ No newline at end of file diff --git a/source/meenemen.rst b/source/meenemen.rst new file mode 100644 index 0000000..6625041 --- /dev/null +++ b/source/meenemen.rst @@ -0,0 +1,68 @@ +============= +Voorbereiding +============= +We gaan met 2 auto's zodat er nog iemand terug kan mocht dat nodig zijn. + +Paklijst +======== + +.. |check| raw:: html + + + +.. |check_| raw:: html + + + +.. |uncheck| raw:: html + + + +.. |uncheck_| raw:: html + + + +.. check to enable: |check| + +.. check disable: |check_| + +.. uncheck enable: |uncheck| + +.. uncheck disable: |uncheck_| + +Dit allemaal meenemen: + + |uncheck| badhanddoeken + + |uncheck| bedlinnen + + |uncheck| ondergoed + + |uncheck| pyjama + + |uncheck| toiletspullen (tandenborstel, tandpasta, shampoo, zeep, deodorant) + + |uncheck| spelletjes + + |uncheck| boeken + + |uncheck| paspoort + + |uncheck| rijbewijs + + |uncheck| sokken + + |uncheck| reisverzekering @Eljakim voor iedereen + + |uncheck| Telefoonoplader + + |uncheck| Camera + + |uncheck| Zonnebrand + + |uncheck| Wandelschoenen + + |uncheck| Toiletpapier + + +