{"id":19136078,"url":"https://github.com/aceynk/charlotteworld","last_synced_at":"2025-07-10T13:36:33.325Z","repository":{"id":226464336,"uuid":"768331854","full_name":"aceynk/charlotteworld","owner":"aceynk","description":"A webring for the CHARLOTTEWORLD discord server!","archived":false,"fork":false,"pushed_at":"2024-06-16T02:45:58.000Z","size":29,"stargazers_count":0,"open_issues_count":0,"forks_count":4,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-19T14:57:25.791Z","etag":null,"topics":["css","html","js","webring"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","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/aceynk.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-03-06T22:20:55.000Z","updated_at":"2024-07-10T23:47:23.000Z","dependencies_parsed_at":"2024-03-17T18:46:57.711Z","dependency_job_id":"5fa446a0-2a3d-4a4c-92e7-c4afe89e8deb","html_url":"https://github.com/aceynk/charlotteworld","commit_stats":null,"previous_names":["aceynk/charlotteworld"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceynk%2Fcharlotteworld","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceynk%2Fcharlotteworld/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceynk%2Fcharlotteworld/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/aceynk%2Fcharlotteworld/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/aceynk","download_url":"https://codeload.github.com/aceynk/charlotteworld/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":252761160,"owners_count":21800124,"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":["css","html","js","webring"],"created_at":"2024-11-09T06:33:05.819Z","updated_at":"2025-05-06T20:07:22.525Z","avatar_url":"https://github.com/aceynk.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CHARLOTTEWORLD webring\n\nThis is a webring for the CHARLOTTEWORLD discord server. Instructions on how to use are below.\n\n## How to request to join\n\nTo request joining the webring, please [fork](https://github.com/login?return_to=%2Faceynk%2Fcharlotteworld) the github repository and in ``users.json`` add your name and url to the end. Here is how to do this:\n\nFirst, add a comma to the entry right before yours. The end of the file might look like this:\n\n```\n...\n    \"crouton\": \"https://crouton.net\"\n}\n```\n\nAnd you should add a comma to the end so that it looks like this:\n\n```\n...\n    \"crouton\": \"https://crouton.net\",\n}\n```\n\nHowever, you can't submit it like this. You need to add your name (can be anything) and your website's link. In the end, the file ending should look like:\n\n```\n...\n    \"crouton\": \"https://crouton.net\",\n    \"my name\": \"https://example.com\"\n}\n```\n\nCreate a pull request to merge this into main on the github repository. You will have to wait for the pull request to be accepted.\n\nRequirements:\n\n* Just have a functioning site and be a part of the CHARLOTTEWORLD discord server, and you'll be good!\n\n## How to add the navigator to your page\n\nTo add the navigator to your page, first you'll want to place the following html into your `\u003chead\u003e\u003c/head\u003e` tag at the start of your document.\n\n```HTML\n\u003clink href=\"https://cdn.jsdelivr.net/gh/aceynk/charlotteworld@main/src/style.css\" rel=\"stylesheet\"\u003e\n\u003cscript src=\"https://cdn.jsdelivr.net/gh/aceynk/charlotteworld@main/src/main.js\"\u003e\u003c/script\u003e\n```\n\nOnce that is finished, place the following html wherever you'd like the navigator to be!\n\nNormal:\n\n```HTML\n\u003cdiv id=\"nav-container\"\u003e\n    \u003ca id=\"prev-link\"\u003e\n        \u003cimg id=\"prev-arrow\" src=\"https://cdn.jsdelivr.net/gh/aceynk/charlotteworld@main/assets/leftarrow.png\" alt=\"prev\"\u003e\n    \u003c/a\u003e\n    \u003cdiv id=\"ch-main\"\u003e\n        CHARLOTTEWORLD Webring!\n    \u003c/div\u003e\n    \u003ca id=\"next-link\"\u003e\n        \u003cimg id=\"next-arrow\" src=\"https://cdn.jsdelivr.net/gh/aceynk/charlotteworld@main/assets/rightarrow.png\" alt=\"next\"\u003e\n    \u003c/a\u003e\n\u003c/div\u003e\n```\n\nCompressed:\n\n```HTML\n\u003cdiv id=\"nav-container\"\u003e\u003ca id=\"prev-link\"\u003e\u003cimg id=\"prev-arrow\" src=\"https://cdn.jsdelivr.net/gh/aceynk/charlotteworld@main/assets/leftarrow.png\" alt=\"prev\"\u003e\u003c/a\u003e\u003cdiv id=\"ch-main\"\u003eCHARLOTTEWORLD Webring!\u003c/div\u003e\u003ca id=\"next-link\"\u003e\u003cimg id=\"next-arrow\" src=\"https://cdn.jsdelivr.net/gh/aceynk/charlotteworld@main/assets/rightarrow.png\" alt=\"next\"\u003e\u003c/a\u003e\u003c/div\u003e\n```\n\nOnce you are done with that, it should work just fine! Please dm @aceynk on discord or create a [github issue](https://github.com/aceynk/charlotteworld/issues) if you run into any problems. Thank you, and enjoy!\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faceynk%2Fcharlotteworld","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Faceynk%2Fcharlotteworld","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Faceynk%2Fcharlotteworld/lists"}