KO
|
EN
gitlite — search
Search
#javascript
#python
#hacktoberfest
#react
#ai
#typescript
#llm
#go
#golang
#android
#machine-learning
#rust
#deep-learning
#linux
slidev-theme-iodigital
★ 9
Open GitHub ↗
No description available.
Download README (.md)
Explore Similar Repositories
View-GCN-DDP
:
PyTorch DistriubtedDataParallel (DDP) implementation of the CVPR 2020 Paper View-GCN.
PortedDIFUZE
:
This repo includes our ported DIFUZE, which can directly generate syzlang format syscall descriptions.
resultgroup
:
A lightweight library for handling results and errors from concurrent tasks, with optional error thresholds and context cancellation.
improved-faster-rcnn
:
Object Detector for Autonomous Vehicles Based on Improved Faster-RCNN
ascia
:
meow
// repository documentation
Was this content helpful?
★ 0
(0 ratings)
Select Rating:
★
★
★
★
★
Submit Feedback
Recent Feedback
×
Download README
Do you want to download the
README.md
file for
slidev-theme-iodigital
?
Download (.md)
# slidev-theme-iodigital [](https://www.npmjs.com/package/slidev-theme-iodigital) An iO Digital theme for [Slidev](https://github.com/slidevjs/slidev). See a demo [here](https://slidev-theme-iodigital-io-technology.vercel.app). ## Install Add the following frontmatter to your `slides.md`. Start Slidev then it will prompt you to install the theme automatically. ``` --- theme: iodigital --- ``` Learn more about [how to use a theme](https://sli.dev/themes/use). ## Settings Next to the [available frontmatter customizations](https://sli.dev/custom/), this theme provides a few additional ones. | Name | Type | Default | Use | Description | | ------ | --------- | ------- | ----------- | ----------- | | footer | `boolean` | `true` | First Slide | Display the footer on each slide (except for layouts `cover`, `intro` & `end`) | ### Transitions The default transition behavior is handled based on the [sections](./docs/CHAPTERS_AND_SECTIONS.MD). Overriding the default is possible by adding the transition property to the frontmatter. ``` --- transition: slide-up --- ``` ## Layouts This theme provides the following layouts: ### Default This layout will probably be most used for content slides. You can put anything in for content. Whether it be text, an image, a list, an iframe. Just make sure it fits the slide. <img alt="Screenshot of default layout" src="./screenshots/layouts/default.png" style="max-width: 50%"> #### Usage ``` --- layout: default # optional --- # Slide title first ## Optional subtitle Amazing content which can be anything, as long as it fits the slide. Just be aware that the subtitle will be show above the title. Both are on the left side. ``` ### CodePen Since we have CodePen Pro accounts at iO, we expect this to be used frequently in presentations. Just provide the CodePen embed URL and an optional slide title. <img alt="Screenshot of codepen layout" src="./screenshots/layouts/codepen/title.png" style="max-width: 50%"> <img alt="Screenshot of codepen layout" src="./screenshots/layouts/codepen/full.png" style="max-width: 50%"> #### Usage ``` --- layout: codepen pen: [CodePen embed URL] --- # Optional Title Provide the default content when you click the `embed` button in your pen. A Slidev slide needs at least one character as content to recognize it as a slide. ``` ### Cover As the name suggests, this layout is the first slide of your slide deck. It announces the title/subject of the presentation. <img alt="Screenshot of cover layout" src="./screenshots/layouts/cover.png" style="max-width: 50%"> #### Usage ``` --- layout: cover image: /path/to/cover/image.jpg # Can be absolute or relative --- ``` ### Full A full size layout. Title on top. Content can be anything you want. If you want to separate your content into columns, have floating images or a large video player, you can do so in your markdown. Just use HTML to create your own layout. <img alt="Screenshot of full layout" src="./screenshots/layouts/full.png" style="max-width: 50%"> #### Usage ``` --- layout: full --- # My Amazing title Some content ``` ### Iframe / Iframe-left / Iframe-right This is the default sli.dev way to display an Iframe inside a slide. Make sure that you use the embed URL if it is provided. <img alt="Screenshot of Iframe layout" src="./screenshots/layouts/iframe.png" style="max-width: 50%"> #### Usage ``` --- layout: iframe / iframe-left / iframe-right url: https://www.youtube.com/embed/dQw4w9WgXcQ --- ``` ### Image A large image as background with only a title. The title is either displayed as an overlay on the image or in a black box. <div style="display:flex;gap:1em"> <img alt="Screenshot of the default variant for the image layout" src="./screenshots/layouts/image/default.png"> <img alt="Screenshot of the box variant for the image layout" src="./screenshots/layouts/image/box.png"> </div> #### Usage ``` --- layout: image image: path/to/my/image.jpg variant: default|box --- # Image layout in the [variant] variant ``` ### Intro Use a single slide per speaker to help introduce them. <img alt="Screenshot of intro layout" src="./screenshots/layouts/intro.png" style="max-width: 50%"> #### Usage ``` --- layout: intro image: /path/to/speaker/image.png imageSide: left|right --- # Speaker name Speaker Description ::social:: <SocialLink network="io" handle="speaker-handle" /> <SocialLink network="linkedin" handle="SpeakerHandle" /> ``` ### Quote Use a single slide per quote or statement <img alt="Screenshot of quote layout" src="./screenshots/layouts/quote.png" style="max-width: 50%"> #### Usage ``` --- layout: quote author: Walter Landor source: 16-04-1992 cite: https://en.wikipedia.org/wiki/Brand --- Products are made in a factory but brands are created in the mind ``` ### Section With only a title - and optional subtitle - this layout indicates a new subject within your slide deck. Read more about [chapters and sections](./docs/CHAPTERS_AND_SECTIONS.MD). <div style="display:flex;flex:33% 0 auto;gap:1rem"> <img alt="Screenshot of a section in the introduction chapter" src="./screenshots/layouts/section/introduction/section.png"> <img alt="Screenshot of a subsection in the introduction chapter" src="./screenshots/layouts/section/introduction/subsection.png"> <img alt="Screenshot of a subsubsection in the introduction chapter" src="./screenshots/layouts/section/introduction/sub-subsection.png"> <img alt="Screenshot of a section in the story chapter" src="./screenshots/layouts/section/story/section.png"> <img alt="Screenshot of a subsection in the story chapter" src="./screenshots/layouts/section/story/subsection.png"> <img alt="Screenshot of a subsubsection in the story chapter" src="./screenshots/layouts/section/story/sub-subsection.png"> <img alt="Screenshot of a section in the conclusion chapter" src="./screenshots/layouts/section/conclusion/section.png"> <img alt="Screenshot of a subsection in the conclusion chapter" src="./screenshots/layouts/section/conclusion/subsection.png"> <img alt="Screenshot of a subsubsection in the conclusion chapter" src="./screenshots/layouts/section/conclusion/sub-subsection.png"> </div> #### Usage ``` --- layout: section level: 1|2|3 --- # My New Section ## Optional subtitle ``` ### Two-cols As the name suggest, this layout divides the page in two columns (left / right). By default the content is placed in the left column and with the `::right::` slot you're able to place content in the right column. <img alt="Screenshot of two cols layout" src="./screenshots/layouts/two-cols.png" style="max-width: 50%"> #### Usage ``` --- layout: two-cols division: 70/30 --- # Left side title Lorem ipsum dolor sit amet, consectetur adipiscing elit. Nulla nec nunc orci. Donec sit amet tincidunt ipsum. Maecenas tristique ornare nisi a ullamcorper. ::right:: # Right side title Lorem ipsum dolor sit amet, consectetur adipiscing elit. - First item - Second item - Third item ``` ## Components This theme provides the following components: ### SocialLink Mainly used in (but not limited to) the [layout](#intro) layout. It creates an anchor to a known social network. Only provide the name of the `network` and the speaker's `handle`. Currently, the following [networks](/theme.config.ts#L20) are supported: - iO Techhub - LinkedIn - Twitter - Github #### Usage ``` <SocialLink handle="some-handle" network="io" /> ``` ### ProfileCard This component can be used to create a profile card displaying the `firstName` and `lastName` and optionally the `functionTitle`, `email`, `telephone` and profile picture (`image`). #### Usage ``` <ProfileCard firstName="John" lastName="Doe" functionTitle="Front-end developer" email="john.doe@iodigital.com" telephone="06-12345678" image="https://picsum.photos/200/200" /> ``` ### Facts This component can be used to display facts. It accepts an array of facts `[{ fact: '30%', description: 'Fact description' }]` and optionally a direction `row | column` with a default of `row`. #### Usage ``` <Facts :facts="[{ stat: '30%', description: 'Short description - maximum three lines' }, { stat: '130%', description: 'Short description - maximum three lines' }, { stat: '10.000', description: 'Lorem ipsum dolor sit amet consectetur adipisicing elit. Nulla mollitia ad, laborum ipsum odit asperiores quo optio perspiciatis sequi quasi voluptate natus aperiam molestias ullam perferendis esse doloremque unde consequuntur.' }]" /> ``` ### Icons This theme supports Material Design Icons (MDI) out of the box. Custom icons are also available (e.g. io logo). Each icon has its own (self-closing) element and can be written in both CamelCase and kebab-case. #### Usage ``` <IconMdiAccount /> <icon-mdi-account /> <icon-mdi-account></icon-mdi-account> <IconIoLogo /> <IconIoLogo></IconIoLogo> ``` ### Table of contents This component can be used to create a table of contents based on the headings from every level 1 section slide. <img alt="Screenshot of table of contents layout" src="./screenshots/layouts/toc.png" style="max-width: 50%"> #### Usage ``` --- layout: image-right (this can be any layout) image: 'https://source.unsplash.com/collection/94734566/1920x1080' --- # Table of contents <Toc /> ``` ## Contributing For more information about contributing to this project see the [CONTRIBUTING.md](./CONTRIBUTING.md). - `npm install` - `npm run dev` to start theme preview of `example.md` - Edit the `example.md` and style to see the changes - `npm run export` to generate the preview PDF - `npm run screenshot` to generate the preview PNG