This is the theme used for the presentation made by Reply.
To use the theme, you have to initialize a new Slidev project with the following command:
yarn create slidev
You will be asked to pick a name for your project, and then the package manager you want to use (yarn
is a great start).
You can now install the theme with the following command:
git submodule add [email protected]:reply-fr/slidev-theme-reply.git theme
You can now edit the slides.md
file to create your presentation to set the theme in the slides.md
file:
---
...
theme: ./theme
---
...
This theme will by default display a green footer to your presentation. You can customize it by adding the following to your frontmatter:
---
footer: "Text that will appear in the footer"
---
You can also hide it:
---
hide_footer: true
---