├── .gitignore ├── .gitmodules ├── Gemfile ├── LICENSE ├── README.md ├── _config.yml ├── _layouts └── reveal.html ├── _plugins ├── background.rb └── fragment.rb ├── _posts ├── 0000-01-01-welcome.md ├── 0000-01-02-slides.md ├── 0000-01-03-fragments.md ├── 0000-01-04-vertical.md ├── 0000-01-05-background.md ├── 0000-01-06-code.md ├── 0000-01-07-notes.md ├── 0000-01-08-image-background.md └── 0000-01-09-svg-diagrams.md ├── assets ├── css │ └── mermaid.css └── js │ └── mermaid │ ├── LICENSE.txt │ └── reveal-js-mermaid-plugin.js ├── docker-compose.yml └── index.html /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/.gitmodules -------------------------------------------------------------------------------- /Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/Gemfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/README.md -------------------------------------------------------------------------------- /_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_config.yml -------------------------------------------------------------------------------- /_layouts/reveal.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_layouts/reveal.html -------------------------------------------------------------------------------- /_plugins/background.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_plugins/background.rb -------------------------------------------------------------------------------- /_plugins/fragment.rb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_plugins/fragment.rb -------------------------------------------------------------------------------- /_posts/0000-01-01-welcome.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-01-welcome.md -------------------------------------------------------------------------------- /_posts/0000-01-02-slides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-02-slides.md -------------------------------------------------------------------------------- /_posts/0000-01-03-fragments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-03-fragments.md -------------------------------------------------------------------------------- /_posts/0000-01-04-vertical.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-04-vertical.md -------------------------------------------------------------------------------- /_posts/0000-01-05-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-05-background.md -------------------------------------------------------------------------------- /_posts/0000-01-06-code.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-06-code.md -------------------------------------------------------------------------------- /_posts/0000-01-07-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-07-notes.md -------------------------------------------------------------------------------- /_posts/0000-01-08-image-background.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-08-image-background.md -------------------------------------------------------------------------------- /_posts/0000-01-09-svg-diagrams.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/_posts/0000-01-09-svg-diagrams.md -------------------------------------------------------------------------------- /assets/css/mermaid.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/assets/css/mermaid.css -------------------------------------------------------------------------------- /assets/js/mermaid/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/assets/js/mermaid/LICENSE.txt -------------------------------------------------------------------------------- /assets/js/mermaid/reveal-js-mermaid-plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/assets/js/mermaid/reveal-js-mermaid-plugin.js -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dploeger/jekyll-revealjs/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | --- 2 | layout: reveal 3 | title: not used. Use _config.yml! 4 | --- --------------------------------------------------------------------------------