{"id":21419023,"url":"https://github.com/runmaxde/startpage-action","last_synced_at":"2026-05-11T03:50:39.796Z","repository":{"id":219177187,"uuid":"452300203","full_name":"runmaxde/startpage-action","owner":"runmaxde","description":"A lightweight Startpage generator powered by YAML \u0026 handlebars","archived":false,"fork":false,"pushed_at":"2024-07-17T21:28:04.000Z","size":244,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-01-23T06:13:31.841Z","etag":null,"topics":["bookmarks-manager","github-actions","startpage-generator"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/runmaxde.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}},"created_at":"2022-01-26T14:09:47.000Z","updated_at":"2024-07-17T21:28:05.000Z","dependencies_parsed_at":"2024-01-25T22:24:18.844Z","dependency_job_id":"75dc3fc0-aef2-40e4-8d71-0f8291c26ec4","html_url":"https://github.com/runmaxde/startpage-action","commit_stats":null,"previous_names":["runmaxde/startpage-action"],"tags_count":2,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runmaxde%2Fstartpage-action","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runmaxde%2Fstartpage-action/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runmaxde%2Fstartpage-action/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/runmaxde%2Fstartpage-action/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/runmaxde","download_url":"https://codeload.github.com/runmaxde/startpage-action/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":243918927,"owners_count":20368794,"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":["bookmarks-manager","github-actions","startpage-generator"],"created_at":"2024-11-22T19:33:37.285Z","updated_at":"2026-05-11T03:50:34.761Z","avatar_url":"https://github.com/runmaxde.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003ch1\u003eStartpage Action 🏠\u003c/h1\u003e\n  \u003ch3\u003e\u003ca href=\"https://github.com/features/actions\"\u003eGithub Action\u003c/a\u003e to generate a Webpage from your Bookmarks powered by YAML \u0026amp; Handlebars\u003c/h3\u003e\n  \u003ca href=\"https://www.raycast.com/search/Search%20Cargo%20Packages\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/Ask%20me-anything-1abc9c.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://choosealicense.com/licenses/mit/\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/license-MIT-green.svg\" /\u003e\n  \u003c/a\u003e\n  \u003cbr/\u003e\u003cbr/\u003e\u003cbr/\u003e\n\u003c/div\u003e\n\n## Action 🎬\n\n``` yaml\n# ~/.github/workflows/buil.yml\n\non: [push]\n\njobs:\n  build:\n    runs-on: ubuntu-latest\n    name: Build the page\n    steps:\n      - name: Checkout 🛎️\n        uses: actions/checkout@v2\n\n      - name: Build\n        uses: runmaxde/startpage-action@v0.2\n        with:\n          templateFile: \"./template/index.hbs\"\n          inputFile: \"./input.yml\"\n          outputPath: \"./page/\"\n\n      - name: Commit\n        run: |\n          git config --local user.email \"$(git log --format='%ae' HEAD^!)\"\n          git config --local user.name \"$(git log --format='%an' HEAD^!)\"\n          git add .\n          git commit -m \"👷 🔨\"\n          git push origin HEAD:${GITHUB_REF}\n        shell: bash\n```\n\n## Example\n\n``` handlebars\n{{!-- ~/template/index.hbs --}}\n\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\n\u003chead\u003e\n  \u003cmeta charset=\"UTF-8\"\u003e\n  \u003cmeta http-equiv=\"X-UA-Compatible\" content=\"IE=edge\"\u003e\n  \u003cmeta name=\"viewport\" content=\"width=device-width, initial-scale=1.0\"\u003e\n  \u003cscript src=\"https://cdn.tailwindcss.com\"\u003e\u003c/script\u003e\n\n  \u003ctitle\u003eStartpage\u003c/title\u003e\n\u003c/head\u003e\n\n\u003cbody\u003e\n  \u003cdiv class=\"flex items-center justify-center h-screen font-mono text-white bg-stone-900\"\u003e\n    \u003cdiv class=\"grid grid-cols-1 sm:grid-cols-2  lg:grid-cols-3\"\u003e\n      {{#groupList}}\n      \u003cdiv class=\"m-10\"\u003e\n\n        \u003cdiv class=\"text-2xl font-black\"\u003e\n          \u003cspan class=\"text-3xl text-center\" style=\"display: inline-block; width: 35px; height: 35px\"\u003e{{emoji}}\u003c/span\u003e\n          \u003cspan class=\"ml-2\"\u003e\n            {{groupTitle}}\n          \u003c/span\u003e\n        \u003c/div\u003e\n        \u003cdiv class=\"mt-2 ml-4 border-l\"\u003e\n          {{#linkList}}\n          \u003cdiv class=\"p-1 pl-10\"\u003e\n            \u003ca href='{{linkUrl}}'\u003e{{linkTitle}}\u003c/a\u003e\n          \u003c/div\u003e\n          {{/linkList}}\n        \u003c/div\u003e\n      \u003c/div\u003e\n      {{/groupList}}\n    \u003c/div\u003e\n  \u003c/div\u003e\n\u003c/body\u003e\n\n\u003c/html\u003e\n```\n\n``` yaml \n# ~/input.yml\n\nGroup 1:\n  _@icon: 🚀\n  github: https://github.com/\n  google: https://google.com/\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frunmaxde%2Fstartpage-action","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Frunmaxde%2Fstartpage-action","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Frunmaxde%2Fstartpage-action/lists"}