Skip to content

Deck Configuration

Beau edited this page Jun 5, 2020 · 1 revision

Deck Configuration

The deck configuration is found here: lib/live_deck/presentations/config.ex

Setting Slide Order

@default_slides [ %{filename: "template_title.html"} %{filename: "template_4_col.html", title: "LiveDeck Roadmap"}, %{filename: "template_full_image.html"} ]

Setting Slide Title

@default_slides [ %{filename: "template_4_col.html", title: "LiveDeck Roadmap"} ]

Setting Slide Background

Add the class of the desired theme background to the background_color parameter.
@default_slides [ %{filename: "template_4_col.html", title: "LiveDeck Roadmap", background_color: "back--2"} ]

Adding Slide Notes

defp notes(for: "template_2_col.html") do "Hello, I am your slide notes!" end

Clone this wiki locally