Project structure draft.

This commit is contained in:
Kremitzl 2019-11-26 19:52:58 +01:00
parent d0b954ee8f
commit 0359329dab
2 changed files with 78 additions and 0 deletions

5
.gitignore vendored
View File

@ -114,3 +114,8 @@ dmypy.json
# Pyre type checker
.pyre/
# editor-specific
*.swp
.vscode/
*~

73
structure-draft Normal file
View File

@ -0,0 +1,73 @@
- lib
- script.py
- test
- config.yml
- slides
- chapter1.en.md
- chapter1.de.md
- styles
- style.sass
- layouts
-
- lib
- dist
- project
- slides.yml
-----------------------------------------
Struktur
-----------------------------------------
- chapter1:
source: chapter1
# implizit: chapter1.<lang>.md,
# optional
default_layout: <layout> # optional
-----------------------------------------
Config
-----------------------------------------
footer:
de: Fußzeile
en: footer
-----------------------------------------
Inhalte
-----------------------------------------
@SLIDE(layout=foo)
@FELD1
ffdjklfjskl
@FELD2
djfskf jslf sjklf jsdf skl
@SLIDE
-----------------------------------------
Layouts
-----------------------------------------
<!DOCTYPE html>
<html>
{{CONTENT}}
</html>
-----------------------------------------
<section>
<h2>@FELD1(inline=true)</h2>
<div>
<div>
@FELD2
</div>
</div>
<footer>@footer</footer>
</section>