{"id":22583004,"url":"https://github.com/jerdog/jerdog-base-talk-slidev","last_synced_at":"2026-03-19T23:10:54.303Z","repository":{"id":255732541,"uuid":"853388251","full_name":"jerdog/jerdog-base-talk-slidev","owner":"jerdog","description":"Base template for talks I build with Slidev","archived":false,"fork":false,"pushed_at":"2024-12-16T13:29:49.000Z","size":525,"stargazers_count":0,"open_issues_count":2,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-01T07:13:28.608Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Vue","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jerdog.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2024-09-06T14:57:16.000Z","updated_at":"2024-09-19T21:02:58.000Z","dependencies_parsed_at":"2025-02-02T17:29:24.307Z","dependency_job_id":"11375108-b74c-49c6-93a9-9327ea03136c","html_url":"https://github.com/jerdog/jerdog-base-talk-slidev","commit_stats":null,"previous_names":["jerdog/jerdog-base-talk-slidev"],"tags_count":0,"template":true,"template_full_name":null,"purl":"pkg:github/jerdog/jerdog-base-talk-slidev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerdog%2Fjerdog-base-talk-slidev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerdog%2Fjerdog-base-talk-slidev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerdog%2Fjerdog-base-talk-slidev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerdog%2Fjerdog-base-talk-slidev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jerdog","download_url":"https://codeload.github.com/jerdog/jerdog-base-talk-slidev/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jerdog%2Fjerdog-base-talk-slidev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28862125,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-28T22:56:21.783Z","status":"online","status_checked_at":"2026-01-29T02:00:06.714Z","response_time":59,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-08T06:13:11.941Z","updated_at":"2026-01-29T03:34:12.390Z","avatar_url":"https://github.com/jerdog.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Jeremy's base Slidev talk deck\n\n## Dependencies\n\n- Slidev - https://sli.dev/\n- \n\n\n## Using \u0026 Development\n\n1. [Fork] (https://github.com/jerdog/jerdog-base-talk-slidev/fork) the repo to your organization\n\n2. Clone the repo\n\n```bash\ngit clone \u003cyour fork\u003e\ncd \u003cyour local fork directory\u003e\n```\n\n3. Install dependencies and run the dev server\n\n```bash\nnpm install\nnpm run dev\n```\n\n4. View the base: \u003chttp://localhost:3030\u003e\n\n5. Edit the [slides.md](./slides.md) file and then save to see the changes.\n\nLearn more about Slidev at the [documentation](https://sli.dev/).\n\n### Config items\n\n#### Main presentation\n\nFor the presentation config, edit the specific YAML entries in the [slides.md](./slides.md) frontmatter:\n\n- `theme:` by default using the `slidev-theme-the-unnamed` theme\n- `title:` \n- `author:`\n- `info:` this block is markdown and is where to put basic info (title, abstract, etc.)\n- `conference:` put the conference name, which will be used in the left footer of the presentation\n- `keywords:` put the keywords for the presentation\n- `favicon:` put the favicon for the presentation, can be a local file or a URL\n\n**Other config items**\n\n- `fonts:` a list of values for the font types (sans, serif, mono) to use in the presentation\n- `class:` the default class for the presentation\n- `defaults:` default frontmatter for the presentation (layout, transition, etc.)\n\n#### Presentation slides\n\nThe slides are written in markdown and HTML, and each slide begins with a `---` line. You can use frontmatter to add additional information to the slide by adding it after the `---` line, and then closing the frontmatter with another `---` line.\n\nYou can add specific config for each slide like class, layout, transition, etc.\n\n### Addons\n\nThere are a few addons which make sense for these slides, and you include them in the presentation by adding them to the `addons` list in the [slides.md](./slides.md) frontmatter:\n\n```yaml\naddons:\n    - slidev-addons-rabbit\n```\n\n- [slidev-addon-qrcode](https://www.npmjs.com/package/slidev-addon-qrcode) - add a QR code to the slide\n***Note:*** use the `\u003cdiv\u003e` with the class to center the rendered qr code. Remove the `image=\"/logo.svg\"` parameter if you don't want a logo in the center.\n\n```html\n\u003cdiv class=\"flex flex-col items-center\"\u003e\n    \u003cQRCode\n        :width=\"100\"\n        :height=\"100\"\n        type=\"svg\"\n        data=\"https://sli.dev\"\n        :margin=\"10\"\n        :imageOptions=\"{ margin: 10 }\"\n        :dotsOptions=\"{ type: 'extra-rounded', color: 'purple' }\"\n        image=\"/logo.svg\"\n    /\u003e\n\u003c/div\u003e\n```\n\n- [slidev-addon-rabbit](https://www.npmjs.com/package/slidev-addon-rabbit) - add a rabbit at the bottom of the slide which progresses from left to right according to the time you have set with the `?time=xx` with `xx` being the number of minutes for the presentation. If you want the slide number to be shown with the rabbit, add the following to the slide config frontmatter:\n\n```yaml\nrabbit:\n  slideNum: true\n```\n\n## LICENSE\n\nMIT License\n\nCopyright (c) 2024-25 Jeremy Meiss.","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerdog%2Fjerdog-base-talk-slidev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjerdog%2Fjerdog-base-talk-slidev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjerdog%2Fjerdog-base-talk-slidev/lists"}