A minimal presentation package for Svelte, includes synchronized "Presenter" and "Presentation" views.
All slides are simple routes. The examples use mdsvex but that is not required.
In +layout.svelte
there is a constant called slides
that holds the order of them:
const slides = ['welcome', 'intro'];
Use ArrowLeft
and ArrowRight
to move through the slides.
The presentation view can be opened by adding ?presentation
to the url.
A special PresenterNotes
component has been added, this only show in pages without ?presentation
TODO: add this as a shortcode instead ?
DIY :)