├── .gitignore ├── AUTHORS.txt ├── Dockerfile ├── LICENSE-CODE.txt ├── LICENSE-CONTENT.txt ├── LICENSE.txt ├── Makefile ├── README.rst ├── _html_extra ├── ivan.ivanov │ └── .gitignore └── private │ └── .gitignore ├── _static ├── .gitignore └── custom.css ├── _templates ├── layout.html ├── page.html └── relations.html ├── conf.py ├── index.rst ├── ivan.ivanov └── index.rst ├── make.bat ├── private └── index.rst ├── requirements.freeze.txt ├── requirements.txt └── trunk └── index.rst /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | public 3 | __pycache__ 4 | .env 5 | *.pyc 6 | *~ 7 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE-CODE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/LICENSE-CODE.txt -------------------------------------------------------------------------------- /LICENSE-CONTENT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/LICENSE-CONTENT.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/README.rst -------------------------------------------------------------------------------- /_html_extra/ivan.ivanov/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_html_extra/private/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_static/.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /_static/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/_static/custom.css -------------------------------------------------------------------------------- /_templates/layout.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/_templates/layout.html -------------------------------------------------------------------------------- /_templates/page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/_templates/page.html -------------------------------------------------------------------------------- /_templates/relations.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/_templates/relations.html -------------------------------------------------------------------------------- /conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/conf.py -------------------------------------------------------------------------------- /index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/index.rst -------------------------------------------------------------------------------- /ivan.ivanov/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/ivan.ivanov/index.rst -------------------------------------------------------------------------------- /make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/make.bat -------------------------------------------------------------------------------- /private/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/private/index.rst -------------------------------------------------------------------------------- /requirements.freeze.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/requirements.freeze.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/requirements.txt -------------------------------------------------------------------------------- /trunk/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/emacsway/dckms-template/HEAD/trunk/index.rst --------------------------------------------------------------------------------