Slide templates

Sirenia — July 2022

© 2022 SIRENIA ‒ CONFIDENTIAL

How to create a new set of slides

  1. Clone the repo
> git clone git@gitlab.com:sirenia/docs/slides.git
  1. Create a new branch from master
> git checkout -b name-of-my-slideshow
  1. Edit README.md with new content and add images etc, then commit and push
> git commit -m "Added content for my slideshow" && git push -u origin 
© 2022 SIRENIA ‒ CONFIDENTIAL

Location of slides

Slides are built and then published to http://slides.sirenia.io/name-of-my-slideshow

PDF versions are also available at http://slides.sirenia.io/name-of-my-slideshow/slides.pdf

(Replace name-of-my-slideshow with the name of your branch)

© 2022 SIRENIA ‒ CONFIDENTIAL

Update the template

Is done by merging any changes from master into your branch and pushing.

© 2022 SIRENIA ‒ CONFIDENTIAL

Rendering slides locally

For faster turn-around you may want to render the slides locally. First install:

> yarn global add sass @marpteam/marp-cli

Then do

> sass --watch themes:themes

and

> marp -w --theme themes/sirenia.css README.md

and open the generated README.html file in a browser.

© 2022 SIRENIA ‒ CONFIDENTIAL

Markdown

About the markdown supported etc can be found at https://marpit.marp.app/

© 2022 SIRENIA ‒ CONFIDENTIAL

Plugins

Emojis are supported 😎 👍

And neat typographical replacements like -- turning into – and curly “quotes” via https://github.com/sireniaeu/markdown-it-typographer

And abbreviations like RTFM can be defined through https://github.com/markdown-it/markdown-it-abbr

Abd tags which can then be styled, e.g. [*red*]{.red} becomes red with the proper style tag on the slide via https://github.com/arve0/markdown-it-attrs

© 2022 SIRENIA ‒ CONFIDENTIAL

Styles

The slides have a few built-in styles which you can apply to a complete deck with:

<!-- class: black -->

or for a single slide:

<!-- _class: black -->

The following slides showcase the available styles.

© 2022 SIRENIA ‒ CONFIDENTIAL

Orange

I am an orange slide.

© 2022 SIRENIA ‒ CONFIDENTIAL

Green

I am a green slide.

© 2022 SIRENIA ‒ CONFIDENTIAL

Purple

I am a purple slide.

© 2022 SIRENIA ‒ CONFIDENTIAL

Red

I am a red slide.

© 2022 SIRENIA ‒ CONFIDENTIAL

White

I am a white slide.

© 2022 SIRENIA ‒ CONFIDENTIAL

Black

I am a black slide.

© 2022 SIRENIA ‒ CONFIDENTIAL