Compare commits
10 Commits
wtf_coop_t
...
main
Author | SHA1 | Date | |
---|---|---|---|
|
db81b65cc4 | ||
|
56c68fc085 | ||
|
e5af0a2c4e | ||
|
0bc31c418d | ||
|
218595c922 | ||
|
323b893714 | ||
|
01acc38404 | ||
|
c655a87a91 | ||
|
f53c84afeb | ||
|
dc8644dfe5 |
@ -1,4 +1,4 @@
|
||||
author: evi, helix, gulliver
|
||||
author: Autorenkollektiv
|
||||
title: RTFM - Das Handbuch für die WTF eG
|
||||
lang: de
|
||||
|
||||
@ -17,10 +17,9 @@ output: [pdf, epub, html]
|
||||
|
||||
## List of chapters
|
||||
+ ../handbuch/intro.md
|
||||
+ ../handbuch/dienste.md
|
||||
+ ../handbuch/FAQ.md
|
||||
+ ../handbuch/organisation.md
|
||||
+ ../handbuch/Aufnahmeprozess.md
|
||||
+ ../handbuch/Wegweiser.md
|
||||
+ ../handbuch/Auszahlung.md
|
||||
+ ../handbuch/RaaS.md
|
||||
+ ../handbuch/AG-Einkauf.md
|
||||
+ ../handbuch/FAQ.md
|
||||
|
2
handbuch
2
handbuch
@ -1 +1 @@
|
||||
Subproject commit 454118b16c3b08ccda5d36d0048fca5e565610c8
|
||||
Subproject commit 9c02ebc66e3ad9dd484ab3304d002707e214dc7f
|
@ -1,5 +1,5 @@
|
||||
[book]
|
||||
authors = ["tbd, helix, evi"]
|
||||
authors = ["Autorenkollektiv"]
|
||||
language = "de"
|
||||
multilingual = false
|
||||
src = "src"
|
||||
|
@ -1,10 +1,9 @@
|
||||
# Inhaltsverzeichnis
|
||||
|
||||
- [Wichtige Links](../../Handbuch/intro.md)
|
||||
- [Dienste und Organisation](../../Handbuch/dienste.md)
|
||||
- [Organisation](../../handbuch/organisation.md)
|
||||
- [Aufnahmeprozess](../../Handbuch/Aufnahmeprozess.md)
|
||||
- [Wegweiser für neue Mitglieder](../../Handbuch/Wegweiser.md)
|
||||
- [Auszahlung](../../Handbuch/Auszahlung.md)
|
||||
- [Häufige Fragen](../../Handbuch/FAQ.md)
|
||||
- [Rechnung as a Service (RaaS)](../../Handbuch/RaaS.md)
|
||||
- [AG Einkauf](../../Handbuch/AG-Einkauf.md)
|
||||
- [Häufige Fragen](../../Handbuch/FAQ.md)
|
||||
|
BIN
sphinx/source/_static/epub_cover.png
Normal file
BIN
sphinx/source/_static/epub_cover.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 134 KiB |
@ -24,8 +24,7 @@ copyright = '2021, diverse'
|
||||
author = 'Autorenkollektiv'
|
||||
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '0.0.1'
|
||||
|
||||
release = '0.0.4'
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
||||
@ -91,4 +90,5 @@ latex_elements = {
|
||||
latex_logo = '_static/wtf_coop_header.png'
|
||||
latex_show_urls = 'footnote'
|
||||
|
||||
epub_cover = ('_static/wtf_coop_header.png', 'epub-cover.html')
|
||||
epub_theme = 'wtf_epub'
|
||||
epub_cover = ('_static/epub_cover.png', 'epub-cover.html')
|
||||
|
@ -11,14 +11,12 @@ RTFM - Das Handbuch zur wtf Kooperative eG
|
||||
:caption: Contents:
|
||||
|
||||
handbuch/intro.md
|
||||
handbuch/dienste.md
|
||||
handbuch/FAQ.md
|
||||
handbuch/organisation.md
|
||||
handbuch/Aufnahmeprozess.md
|
||||
handbuch/Wegweiser.md
|
||||
handbuch/Auszahlung.md
|
||||
handbuch/RaaS.md
|
||||
handbuch/AG-Einkauf.md
|
||||
|
||||
handbuch/FAQ.md
|
||||
|
||||
Indices and tables
|
||||
==================
|
||||
|
23
sphinx/theme/wtf_epub/epub-cover.html
Normal file
23
sphinx/theme/wtf_epub/epub-cover.html
Normal file
@ -0,0 +1,23 @@
|
||||
{#
|
||||
epub/epub-cover.html
|
||||
~~~~~~~~~~~~~~~~~~~~
|
||||
|
||||
Sample template for the html cover page.
|
||||
|
||||
:copyright: Copyright 2007-2021 by the Sphinx team, see AUTHORS.
|
||||
:license: BSD, see LICENSE for details.
|
||||
#}
|
||||
{%- extends "layout.html" %}
|
||||
{%- block header %}{% endblock %}
|
||||
{%- block rootrellink %}{% endblock %}
|
||||
{%- block relbaritems %}{% endblock %}
|
||||
{%- block sidebarlogo %}{% endblock %}
|
||||
{%- block linktags %}{% endblock %}
|
||||
{%- block relbar1 %}{% endblock %}
|
||||
{%- block sidebar1 %}{% endblock %}
|
||||
{%- block sidebar2 %}{% endblock %}
|
||||
{%- block footer %}{% endblock %}
|
||||
|
||||
{% block content %}
|
||||
<div class="epub-cover" style="background-image: url('{{ image }}');"></div>
|
||||
{% endblock %}
|
9
sphinx/theme/wtf_epub/static/css/style.css
Normal file
9
sphinx/theme/wtf_epub/static/css/style.css
Normal file
@ -0,0 +1,9 @@
|
||||
.epub-cover {
|
||||
margin: 0;
|
||||
padding: 0;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
background-size: contain;
|
||||
background-repeat: no-repeat;
|
||||
background-position: center;
|
||||
}
|
3
sphinx/theme/wtf_epub/theme.conf
Normal file
3
sphinx/theme/wtf_epub/theme.conf
Normal file
@ -0,0 +1,3 @@
|
||||
[theme]
|
||||
inherit = epub
|
||||
stylesheet = css/style.css
|
Loading…
Reference in New Issue
Block a user