{"id":18246056,"url":"https://github.com/toggledtech/toggled-starter","last_synced_at":"2026-04-30T09:38:00.574Z","repository":{"id":200310353,"uuid":"705081226","full_name":"toggledtech/Toggled-Starter","owner":"toggledtech","description":"📰 The boilerplate for your Toggled web app.","archived":false,"fork":false,"pushed_at":"2024-01-12T02:42:01.000Z","size":85,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2025-04-08T18:55:27.476Z","etag":null,"topics":["builder","carbon","html","markdown","markdownx","md","md-html","mdx","mdx-html","web","webapp","website","website-builder"],"latest_commit_sha":null,"homepage":"https://toggled.tech/site/toggledtech-Toggled-Starter/","language":"MDX","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":"useToggled/Carbon-Starter","license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/toggledtech.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":null,"patreon":"Toggled","open_collective":null,"ko_fi":null,"tidelift":null,"community_bridge":null,"liberapay":null,"issuehunt":null,"otechie":null,"lfx_crowdfunding":null,"custom":"https://zink.tips/lava"}},"created_at":"2023-10-15T00:38:24.000Z","updated_at":"2024-01-10T22:42:40.000Z","dependencies_parsed_at":"2024-01-15T06:29:53.701Z","dependency_job_id":null,"html_url":"https://github.com/toggledtech/Toggled-Starter","commit_stats":{"total_commits":30,"total_committers":1,"mean_commits":30.0,"dds":0.0,"last_synced_commit":"0d18e38b3c0809850f63ceb396424f59bca392b0"},"previous_names":["carbonhosting/carbon-starter","toggledtech/toggled-starter"],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/toggledtech/Toggled-Starter","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2FToggled-Starter","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2FToggled-Starter/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2FToggled-Starter/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2FToggled-Starter/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/toggledtech","download_url":"https://codeload.github.com/toggledtech/Toggled-Starter/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/toggledtech%2FToggled-Starter/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32460781,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-29T22:27:22.272Z","status":"online","status_checked_at":"2026-04-30T02:00:05.929Z","response_time":57,"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":["builder","carbon","html","markdown","markdownx","md","md-html","mdx","mdx-html","web","webapp","website","website-builder"],"created_at":"2024-11-05T09:24:14.235Z","updated_at":"2026-04-30T09:38:00.556Z","avatar_url":"https://github.com/toggledtech.png","language":"MDX","funding_links":["https://patreon.com/Toggled","https://zink.tips/lava"],"categories":[],"sub_categories":[],"readme":"# Getting Started With Toggled\n\n### Fork this Template\nStart off by forking [this template](https://github.com/toggledtech/Toggled-Starter).\n\n![How to fork](https://orionideteam.nimbusweb.me/box/attachment/9239909/lyei9z1e23e316aezdac/x1EYvP0pdTsPfNQ9/screenshot-github.com-2023.09.10-11_07_53.png)\n\n### Toggled.json\nAll control of your web app can be found in `toggled.json`\n\nHere is what the default `toggled.json` looks like:\n```json\n{\n  \"pages\": [{\n    \"name\": \"Home\",\n    \"doc\": \"index\"\n  },\n  {\n    \"name\": \"About\",\n    \"doc\": \"about\"\n  }],\n  \"logo\": \"Toggled.png\",\n  \"action\": {\n    \"URL\": \"//toggled.tech\",\n    \"text\": \"Try Toggled\"\n  },\n  \"title\": \"Toggled Starter\",\n  \"members\": [\"Usernames of all Editors and Publishers *\"]\n}\n```\n\n### Adding, Removing, and Customizing Pages\nTo create a new page, you can need to add a JSON object to the array 'pages'.\n\n```json\n{\n  \"pages\": [\n    {\n      \"name\": \"Display Name (Also shown in URL)\",\n      \"doc\": \"The file path of the Markdown code in your GitHub repo\"\n    }\n  ]\n}\n```\n\nDeleting a page can simply be done by removing the object from the `pages` array.\n\n### Customizing your Web App\nIf you would like to edit the title, favicon, logo, or action button, then this can all be done via the `toggled.json` file.\n\n```json\n{\n  \"logo\": \"The file path of your logo. 80px x 80px (Cannot use external URL the photo must be in your GitHub Repo)\",\n  \"action\": {\n    \"URL\": \"The URL of your action button\",\n    \"text\": \"The display text of your action button\"\n  },\n  \"title\": \"The title in the address bar for your site\",\n  \"favicon\": \"The file path of your favicon. (Cannot use external URL the photo must be in your GitHub Repo)\",\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoggledtech%2Ftoggled-starter","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftoggledtech%2Ftoggled-starter","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftoggledtech%2Ftoggled-starter/lists"}