Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/RealOrangeOne/hugo-theme-revealjs
Use Hugo to build a presentation, powered by RevealJS
https://github.com/RealOrangeOne/hugo-theme-revealjs
hugo presentation revealjs
Last synced: 14 days ago
JSON representation
Use Hugo to build a presentation, powered by RevealJS
- Host: GitHub
- URL: https://github.com/RealOrangeOne/hugo-theme-revealjs
- Owner: RealOrangeOne
- License: mit
- Created: 2018-01-02T16:37:47.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-01-07T11:28:29.000Z (almost 7 years ago)
- Last Synced: 2024-10-27T15:44:54.380Z (17 days ago)
- Topics: hugo, presentation, revealjs
- Language: HTML
- Homepage: https://hugo-theme-revealjs.netlify.com/
- Size: 163 KB
- Stars: 45
- Watchers: 5
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Hugo Theme RevealJS
[![CircleCI](https://circleci.com/gh/RealOrangeOne/hugo-theme-revealjs.svg?style=svg)](https://circleci.com/gh/RealOrangeOne/hugo-theme-revealjs)
Use [Hugo](https://gohugo.io) to create slideshow presentations, powered by [reveal.js](https://revealjs.com/#/).
![Screenshot](https://github.com/RealOrangeOne/hugo-theme-revealjs/blob/master/images/screenshot.png?raw=true)
Visit [the nelify site](https://hugo-theme-revealjs.netlify.com/) for an example and usage instructions.
## Configuration
- `params.reveal_theme`: css theme name for revealjs (default: `night`)
- `params.hljs_theme`: css theme name for highlight.js (default: `monokai_sublime`)
- `params.revealjs`: configuration options passed directly to `Reveal.initialise`. ([default](data/reveal_defaults.yml))### Optimisation
RevealJS is a single-page application, meaning the only required file is `index.html`. As all static assets are loaded from `cdnjs`, there's very little that needs to be rendered.By default, no dedicate pages / sections are rendered. To reduce the output to only the required files, add this to your sites config:
```yaml
disableKinds:
- "sitemap"outputs:
home:
- "html"
```