{"id":13627960,"url":"https://github.com/wulab/mithril-slides","last_synced_at":"2026-03-02T02:45:50.905Z","repository":{"id":29826162,"uuid":"33370721","full_name":"wulab/mithril-slides","owner":"wulab","description":"A Keynote-inspired presentation app written with Mithril","archived":false,"fork":false,"pushed_at":"2018-08-26T05:16:26.000Z","size":202,"stargazers_count":23,"open_issues_count":5,"forks_count":4,"subscribers_count":6,"default_branch":"master","last_synced_at":"2024-08-01T22:41:42.265Z","etag":null,"topics":["javascript","json","keynote","mithril","presentation"],"latest_commit_sha":null,"homepage":"https://mithril-slides.onrender.com","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"other","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wulab.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}},"created_at":"2015-04-03T16:00:51.000Z","updated_at":"2023-06-12T03:33:22.000Z","dependencies_parsed_at":"2022-09-07T00:50:34.633Z","dependency_job_id":null,"html_url":"https://github.com/wulab/mithril-slides","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wulab%2Fmithril-slides","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wulab%2Fmithril-slides/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wulab%2Fmithril-slides/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wulab%2Fmithril-slides/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wulab","download_url":"https://codeload.github.com/wulab/mithril-slides/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":223735202,"owners_count":17194062,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":["javascript","json","keynote","mithril","presentation"],"created_at":"2024-08-01T22:00:41.568Z","updated_at":"2026-03-02T02:45:50.848Z","avatar_url":"https://github.com/wulab.png","language":"HTML","funding_links":[],"categories":["Presentation","Uncategorized","HarmonyOS"],"sub_categories":["Visual Studio Code","Uncategorized","Windows Manager"],"readme":"# mithril-slides\nA Keynote-inspired presentation app written with Mithril\n\n![screenshots](https://cloud.githubusercontent.com/assets/592709/17454537/012dc70c-5bc4-11e6-86e1-5d5ce2bc35b8.gif)\n\n## Features\n* Create slides as a [simple JSON file](slides.json)\n* Embed websites, web apps or YouTube videos\n* Present ideas using only a web browser\n* Support mobile or tablet devices\n* A total of 4 themes to choose from\n\n![themes](https://user-images.githubusercontent.com/592709/32982023-6333a648-ccb0-11e7-87e6-cdb94c5573f0.png)\n\n## Getting started\n1. Clone mithril-slides repository at the command prompt if you haven't yet:\n\n        $ git clone https://github.com/wulab/mithril-slides.git\n\n2. Change directory to `mithril-slides` and start a web server:\n\n        $ cd mithril-slides\n        $ python -m SimpleHTTPServer 8000       # Python 2\n        $ python -m http.server 8000            # Python 3\n\n3. Using a browser, go to `http://localhost:8000` and you'll see example slides.\n\n4. To add or edit slides, make changes to the `slides.json` file and reload your browser.\n\n## Keyboard shortcuts\nShortcuts for navigating slides are listed below.\n\nAction                    | Shortcut\n------------------------- | --------------------------------------------\nAdvance to the next slide | \u003ckbd\u003eRight Arrow\u003c/kbd\u003e, \u003ckbd\u003eDown Arrow\u003c/kbd\u003e, \u003ckbd\u003eSpace bar\u003c/kbd\u003e or \u003ckbd\u003eReturn\u003c/kbd\u003e\nGo to previous slide      | \u003ckbd\u003eLeft Arrow\u003c/kbd\u003e, \u003ckbd\u003eUp Arrow\u003c/kbd\u003e or \u003ckbd\u003eBackspace\u003c/kbd\u003e\nQuit presentation mode    | \u003ckbd\u003eEsc\u003c/kbd\u003e or \u003ckbd\u003eQ\u003c/kbd\u003e\nShow or hide the pointer  | \u003ckbd\u003eC\u003c/kbd\u003e\nChange presentation theme | \u003ckbd\u003eT\u003c/kbd\u003e\n\n## Offline mode\nmithril-slides requires an internet connection to work. If you are to present in a\nplace without one. You can still use mithril-slides by checking out `offline` branch\nbefore starting a web server:\n\n        $ git checkout offline\n        $ python -m SimpleHTTPServer 8000       # Python 2\n        $ python -m http.server 8000            # Python 3\n\nYou also need to change src properties of all image and embed objects in your\n`slides.json` file to local files.\n\n## Known issues\nSome websites can not be embedded because they have secure HTTP headers (either\n`X-Frame-Options` or `Content-Security-Policy`) set in their responses. To remove\nthose headers, you need a browser extension. For Google Chrome, install\n[ModHeader][1] extension and add response headers for above headers with empty\nvalues. For Firefox, install [Modify Response Headers][2] add-on and add filters for\nthose headers. The following slide can be used to test your setup:\n\n        {\n            \"embed\": {\n                \"src\": \"https://github.com/\",\n                \"width\": \"1024\",\n                \"height\": \"768\",\n                \"sandbox\": \"allow-forms allow-same-origin allow-scripts\"\n            }\n        }\n\n[1]: https://chrome.google.com/webstore/detail/modheader/idgpnmonknjnojddfkpgkljpfnnfcklj\n[2]: https://addons.mozilla.org/en-US/firefox/addon/modify-response-headers/","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwulab%2Fmithril-slides","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwulab%2Fmithril-slides","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwulab%2Fmithril-slides/lists"}