identinet theme for slidesdown
Add these settings to the presentation:
favicon: https://identinet.github.io/slidesdown-theme/images/favicon.svg
theme: https://identinet.github.io/slidesdown-theme/identinet.css
Themes are written in Sass to keep things modular and reduce the need for repeated selectors across files. To install all dependencies
- Clone this repository
- Then create your own theme, start by duplicating a
.scss
file from reveal.js and place it in the./source
folder.
- Include /css/theme/template/mixins.scss Shared utility functions.
- Include /css/theme/template/settings.scss Declares a set of custom variables that the template file (step 4) expects. Can be overridden in step 3.
- Override This is where you override the default theme. Either by specifying variables (see settings.scss for reference) or by adding any selectors and styles you please.
- Include /css/theme/template/theme.scss The template theme file which will generate final CSS output based on the currently defined variables.
yarn run compile
# or recompile at every modification
yarn run compile-watch
yarn run serve
Or access sample persentation with theme via: https://slidesdown.github.io/?slides=http%3A%2F%2Flocalhost%3A8080%2FSLIDES.md
Create an example presentation
curl -LO https://github.com/slidesdown/slidesdown/raw/main/examples/SLIDES.md
favicon: http://localhost:8080/images/favicon.svg
theme: http://localhost:8080/identinet.css
Serve the presentation locally via slidesdown CLI
slidesdown -d
Publish the theme online so it can be referenced from everywhere, e.g. via GitHub Pages.