rootring
rooted in blogs, linked in a ringGhost
Best placement: Settings → Advanced → Code Injection → Site Footer (site-wide).
This replaces YOUR-SITE in the examples on this page.
Steps
- Open Ghost Admin, usually at
/ghost, and sign in. - Go to Settings → Advanced → Code Injection.
- Paste the snippet into Site Footer.
- Replace
YOUR-SITEwith the URL rootring should use for your blog and click Save. - Open your homepage in a private window and confirm the links appear.
Notes
Ghost also supports per-post or per-page code injection, but site-wide footer injection is the best fit for a webring.
Need a different look?
The placement is the important part. After that, you can choose another version from the snippet gallery.
Recommended snippet
Replace YOUR-SITE with the URL rootring should use for your blog.
Usually this is your homepage. If your ring links live on a separate public page, use that page URL instead.
Show code
<nav class="webring webring--rail-default" aria-label="Webring">
<span class="webring-label"><a href="https://rootr.ing/">rootring</a></span>
<div class="webring-links">
<a href="https://rootr.ing/prev?site=YOUR-SITE">Prev</a>
<a href="https://rootr.ing/random">Random</a>
<a href="https://rootr.ing/directory">Directory</a>
<a href="https://rootr.ing/next?site=YOUR-SITE">Next</a>
</div>
</nav>
<style>
.webring--rail-default {
margin-top: .5rem;
display: flex;
gap: .9rem 1rem;
align-items: baseline;
justify-content: space-between;
flex-wrap: wrap;
padding-top: .45rem;
border-top: 1px solid color-mix(in srgb, currentColor 24%, transparent);
font: inherit;
}
.webring--rail-default .webring-label {
opacity: .78;
letter-spacing: .04em;
text-transform: lowercase;
font-size: .84rem;
}
.webring--rail-default .webring-links {
display: flex;
gap: .8rem;
flex-wrap: wrap;
}
.webring--rail-default a {
text-decoration: none;
}
.webring--rail-default a:hover {
text-decoration: underline;
}
</style>
Want a different look? Browse the snippet gallery.