76 lines
1.1 KiB
Plaintext
Executable File
76 lines
1.1 KiB
Plaintext
Executable File
- onpoint
|
|
- __init__.py
|
|
- test
|
|
- meta.yml
|
|
- images
|
|
- slides
|
|
- chapter1.en.md
|
|
- chapter1.de.md
|
|
- styles
|
|
- style.scss
|
|
- layouts
|
|
- titlepage.html
|
|
- root.html
|
|
- lib
|
|
- dist
|
|
- project
|
|
- slides.yml
|
|
|
|
|
|
-----------------------------------------
|
|
Struktur
|
|
-----------------------------------------
|
|
|
|
- chapter1:
|
|
source: chapter1
|
|
# implizit: chapter1.<lang>.md,
|
|
# optional
|
|
|
|
-----------------------------------------
|
|
Config
|
|
-----------------------------------------
|
|
|
|
default_layout: <layout> # optional
|
|
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>
|