Use this when giving LFE presentations!
There is a live demo of this sample presentation here:
Make sure you have git
, GNU make
and docker
installed.
Clone this repo:
$ git clone [email protected]:lfe/slide-templates.git my-preso
Run the server:
$ cd my-preso
$ make run
Then open up your browser to localhost:1313.
Edit the slides:
- Open up
./content/_index.md
and edit as needed for your LFE presentation. - If you've still got
make run
running, changes in the Markdown file will auto-load in your browser.
This template comes with three themes and may be set by editing ./docker/config.toml
to comment out the undwanted themes and leave uncommented the desired theme:
[params.reveal_hugo]
#custom_theme = "lfe-dark.scss"
custom_theme = "lfe-light.scss"
#custom_theme = "lfe-green.scss"
#custom_theme = "lfe-classic.scss"
To get the classic logo, you will need to edit ./content/_index.md
and change the top of the file from this:
[logo]
src = "logo-v6.svg"
to this:
[logo]
src = "logo-v1.svg"
The 'classic' theme looks best if the markup.highlight
style is changed to
monokailight
.
After editing this file, you will need to stop the local server and re-run
make run
.
To see what you can do with your Markdown slides, see these examples.