Slidev theme used for talks on meetups
npm install slidev-theme-meetup 
A theme used for talks on meetups for [Slidev][slidev]. Generally it's a
combination of different themes like [Unicorn][unicorn], [Purplin][purplin] and
[Penguin][penguin] where I took different snippets from.
Add the following frontmatter to your slides.md. Start Slidev then it will
prompt you to install the theme automatically. Learn more about how to use a
theme within the [documentation][themes].
``md`
---
theme: meetup
layout: intro
lineNumbers: false
themeConfig:
title: Welcome to Slidev
twitter: example
github: example
---
This themes requires additional packages beside the theme itself and the above
configuration:
`console`
npm install vite-svg-loader qrious
Finally you also got to provide a customized vite.config.js as this is
required to load the used SVGs:
`ts
import { defineConfig } from 'vite'
import svgLoader from 'vite-svg-loader'
export default defineConfig({
plugins: [
svgLoader(),
],
})
`
`md`
---
layout: intro
---
`md`
---
layout: presenter
photo: /images/tboerger.jpg
---
`md`
---
layout: twocols
---
`md`
---
layout: center
---
`md`
---
layout: cover
---
`md`
---
layout: window
---
`md`
---
layout: default
---
`md`
---
layout: qrcode
url: https://example.com
---
Just curves shown within the slides.
`vue`
Display content in a terminal window.
`vue`
Content
General header part of every slide.
`vue`
General footer part of every slide.
`vue`
If you find a security issue please contact thomas@boerger.ws first.
Fork -> Patch -> Push -> Pull Request
`console``
Copyright (c) 2022 Thomas Boerger
[slidev]: https://github.com/slidevjs/slidev
[unicorn]: https://github.com/Dawntraoz/slidev-theme-unicorn/
[purplin]: https://github.com/moudev/slidev-theme-purplin/
[penguin]: https://github.com/alvarosabu/slidev-theme-penguin/
[themes]: https://sli.dev/themes/use.html