Compare commits

..

10 Commits

Author SHA1 Message Date
Stephan
db81b65cc4 fix: Removed DON'T PANIC from cover 2021-09-10 19:46:11 +02:00
Gulliver
56c68fc085 updated handbuch submodule 2021-09-10 12:10:50 +02:00
Gulliver
e5af0a2c4e updated handbuch submodule to newest main 2021-09-08 14:47:06 +02:00
Stephan
0bc31c418d feat: added initial version of png cover image to epub 2021-09-05 16:30:02 +02:00
Stephan
218595c922 feat: created epub theme to change the cover 2021-09-05 15:31:09 +02:00
Gulliver
323b893714 updated handbuch submodule to changed main 2021-09-05 14:52:08 +02:00
Gulliver
01acc38404 authors unified in tool configurations, toc for all tools adapted to adapted handbuch chapters 2021-09-05 14:26:51 +02:00
Gulliver
c655a87a91 updated all configurations with new chapter "organisation.md" 2021-09-05 13:19:08 +02:00
Gulliver
f53c84afeb Merge branch 'feature/wtf_coop_theme'
* feature/wtf_coop_theme:
  feat: updated handbuch
  docs: reduced install efforts with creation of requirements.txt
  chore: added plantuml.jar to .gitignore
  feat: 1st wtf_coop theme based on read the docs
  fix: whitespace
  feat: updated handbuch
  feat: updated handbuch
  feat: start over clean
  fix: whitespace
  updated submodule  handbuch
  fix: reduced maxdepth of index to 2 to reduce clutter
  Makefile adapted to changed pdf filename (changed title)
  changed title, authors and release version
  initial sphinx settings for epub (cover page contains only logo for now)
  initial settings for wtf cooperative latex CI added
  theme adapted to wtf CI, logo included, links in header changed to wtf service urls
  new theme wtf_coop created from sphinx13, config changed to use new theme, no further adapations than filenames are done

# Conflicts:
#	sphinx/source/conf.py
2021-09-05 09:01:01 +02:00
Gulliver
dc8644dfe5 updated all configurations with new chapter "organisation.md" 2021-08-31 13:57:37 +02:00
10 changed files with 47 additions and 16 deletions

View File

@ -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

@ -1 +1 @@
Subproject commit 454118b16c3b08ccda5d36d0048fca5e565610c8
Subproject commit 9c02ebc66e3ad9dd484ab3304d002707e214dc7f

View File

@ -1,5 +1,5 @@
[book]
authors = ["tbd, helix, evi"]
authors = ["Autorenkollektiv"]
language = "de"
multilingual = false
src = "src"

View File

@ -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)

Binary file not shown.

After

Width:  |  Height:  |  Size: 134 KiB

View File

@ -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')

View File

@ -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
==================

View 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 %}

View 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;
}

View File

@ -0,0 +1,3 @@
[theme]
inherit = epub
stylesheet = css/style.css