From 8f8366a2853c0b52923ac3e71d219a5e76d5a971 Mon Sep 17 00:00:00 2001 From: DS Date: Fri, 27 Sep 2024 16:53:39 -0700 Subject: [PATCH] Add instructions to add one to the ring. Link to the repository from the directory. --- README.md | 27 +++++++++++++++++++++++++++ templates/index.html | 6 ++++++ 2 files changed, 33 insertions(+) diff --git a/README.md b/README.md index e69de29..2e14977 100644 --- a/README.md +++ b/README.md @@ -0,0 +1,27 @@ +# Adding yourself to the webring + +(Please only follow this if you're an Epesooj insider. Random PRs will be closed for now.) + +Add your information to `webring_data.json`. +The schema is as follows: + +- **`id`**: a unique id for your entry. + You will use this id when adding webring links on your own blog/page. +- **`title`**: the title you want to use on the webring directory. +- **`author`**: the name you want to use on the webring directory. +- **`url`**: the URL to redirect to whenever the webring needs to point a visitor to your entry. + +Create a PR with your changes. + +# Using the webring on your blog/page + +Somewhere in your blog/page (footer recommended), add the following links. +Remember to replace `` with the unique id for your entry on the webring. + +Note: it's ok for you to add these links to your page before your PR gets approved and merged. +The webring will redirect to random pages when given an unknown id. +Whenever your PR gets approved and merged, your id will be recognised and you'll officially be part of the webring. + +- Previous entry: `https://epesooj-webring.pages.dev/previous?id=` +- Next entry: `https://epesooj-webring.pages.dev/previous?id=` +- A link to the webring directory: `https://epesooj-webring.pages.dev` diff --git a/templates/index.html b/templates/index.html index 27084be..81b61e5 100644 --- a/templates/index.html +++ b/templates/index.html @@ -41,6 +41,10 @@ .directory > div > span { font-size: 0.8rem; } + .source-link { + margin-top: 2rem; + font-size: 0.75rem; + } @@ -56,5 +60,7 @@ + + The source for this webring can be viewed here.