{"id":23689478,"url":"https://github.com/luispedro/elmtalks","last_synced_at":"2026-01-18T08:44:30.243Z","repository":{"id":266757620,"uuid":"899272479","full_name":"luispedro/ElmTalks","owner":"luispedro","description":null,"archived":false,"fork":false,"pushed_at":"2025-11-11T01:27:52.000Z","size":162,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-11T03:20:08.390Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Elm","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/luispedro.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2024-12-05T23:51:42.000Z","updated_at":"2025-11-11T01:27:56.000Z","dependencies_parsed_at":"2025-08-25T21:10:00.439Z","dependency_job_id":"3257e8df-5af1-430d-b2e2-75c99ed23736","html_url":"https://github.com/luispedro/ElmTalks","commit_stats":null,"previous_names":["luispedro/elmtalks"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/luispedro/ElmTalks","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispedro%2FElmTalks","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispedro%2FElmTalks/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispedro%2FElmTalks/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispedro%2FElmTalks/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/luispedro","download_url":"https://codeload.github.com/luispedro/ElmTalks/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/luispedro%2FElmTalks/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28534148,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-18T00:39:45.795Z","status":"online","status_checked_at":"2026-01-18T02:00:07.578Z","response_time":98,"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-30T00:52:24.544Z","updated_at":"2026-01-18T08:44:25.223Z","avatar_url":"https://github.com/luispedro.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Elm Talks\n\nElm Talks is a lightweight presentation framework written in [Elm](https://elm-lang.org/). Slides are defined in Elm code and compiled into static HTML, making it easy to host the result anywhere.\n\n## Building\n\nRun `./build.sh` to compile the sources and produce a `dist` directory containing `index.html` and assets. The build script invokes `elm make` and copies media files.\n\n## Example\n\nBelow is a minimal program that constructs a short slideshow.\n\n```elm\nmodule Main exposing (main)\n\nimport Html exposing (Html, div, text)\nimport SlideShow exposing (mkSlideShow)\nimport Slides exposing (SlideList, mkSlide, cookSlides)\nimport String\n\nslides : SlideList msg\nslides =\n    cookSlides\n        [ mkSlide \"Intro\" [ text \"Welcome to Elm Talks\" ]\n        , mkSlide \"Finish\" [ text \"Thanks!\" ]\n        ]\n\nfooter : Int -\u003e Int -\u003e Html msg\nfooter current total =\n    div [] [ text (String.fromInt current ++ \"/\" ++ String.fromInt total) ]\n\nmain =\n    mkSlideShow\n        { title = \"Demo\"\n        , slides = slides\n        , mkFooter = footer\n        }\n```\n\nRunning the example and opening the generated `index.html` will display a two slide presentation.\n\n## Slides, RawSlides, and Cooking\n\nSlide content is defined using the `Slides` module.  A `RawSlide` represents the\nunprocessed form of a slide.  It can be a single slide, a group of slides (for\nincremental or stepped content), or a collection of extra slides that are moved\nto the end.  The `cookSlides` function converts a list of `RawSlide` values into\nthe plain `Slide` list consumed by `mkSlideShow`.\n\n## Footer Arguments\n\nThe `mkFooter` field of `mkSlideShow` takes a function that receives two\narguments: the current slide number and the total number of slides.  This\nfunction returns the `Html` that should appear at the bottom of every slide,\nallowing you to customise the footer layout or omit it entirely.\n\n## HtmlSimple Utilities\n\nElm Talks ships with a small utility module named `HtmlSimple`.  It contains\nconvenience functions for building slide content, such as helpers for floating\nelements, sized images, simple lists, and converting Markdown to HTML.  Import\n`HtmlSimple` when you want to lean on these utilities instead of writing the\nmarkup by hand.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluispedro%2Felmtalks","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fluispedro%2Felmtalks","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fluispedro%2Felmtalks/lists"}