Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/merlinstardust/jekyll-revealjs-template
https://github.com/merlinstardust/jekyll-revealjs-template
Last synced: 15 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/merlinstardust/jekyll-revealjs-template
- Owner: merlinstardust
- Created: 2020-12-25T18:44:46.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2020-12-25T18:45:38.000Z (about 4 years ago)
- Last Synced: 2024-11-12T18:48:36.808Z (2 months ago)
- Language: JavaScript
- Size: 1.44 MB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Jekyll reveal.js Template + Slides Collection
A simple Jekyll template for easily and quickly making reveal.js presentations.
## See the demo
## Jekyll Layout
Using a Jekyll layout, Reveal presentations only need slides defined by the `` tag. No more messing around with the head and script configs.
```
Example
Slide 2
```
## Slides Collection
Presentations are stored in a special `_slides` which can be looped over with a `site.slides` variable. This is defined in `_config.yml`
```
{% for slide in site.slides %}
{% endfor %}
```## YAML Front Matter
Themes can be overridden with [YAML Front Matter](https://jekyllrb.com/docs/frontmatter/) or change the default in `_config.yml`
```
---
theme: white
---
Example 2 - Overridden Theme
```