2022-03-15 20:48:12 +00:00
<!--
Some webrings require the sending of a "Referer" header,
but my site has two non-canonical mirrors. Don't add those.
2022-05-04 04:58:52 +00:00
-->{{- $refPol := "no-referrer" -}}
2022-04-26 00:28:13 +00:00
{{- if eq site.BaseURL "https://seirdy.one/" -}}
{{- $refPol = "strict-origin" -}}
2022-05-04 04:58:52 +00:00
{{- end -}}
< h2 id = "webrings" > Webrings< / h2 >
{{ $webringData := after 1 (getCSV "," "/csv/webrings.csv") -}}
2022-05-05 05:22:38 +00:00
< p > This site is part of {{ len $webringData }} < a href = "https://en.wikipedia.org/wiki/Webring" > webrings< / a > . A webring is a collection of sites in a circular doubly-linked list; each website links to the next and previous site in the list.< / p >
2022-05-23 22:17:02 +00:00
< details >
< summary > Toggle webrings list< / summary >
2022-08-25 03:14:09 +00:00
< p > Some of the “next” and “previous” links contain JavaScript; you need to enable it to be re-directed to the correct page. I’ ve marked these links with “JS”.< / p >
2022-05-23 22:17:02 +00:00
< ol >
{{- range $i, $r := $webringData }}
{{- $webringName := index $r 0 }}
2022-08-25 03:14:09 +00:00
< li > {{- $webringName -}}
2022-05-23 22:17:02 +00:00
< ol >
< li >
< a href = "{{- index $r 2 -}}" > {{- $webringName }} webring home< / a >
< / li >
< li >
< a href = "{{- index $r 1 -}}" rel = "nofollow ugc" referrerpolicy = "{{ $refPol }}" > Previous {{ $webringName }} site< / a >
< / li >
< li >
< a href = "{{- index $r 3 -}}" rel = "nofollow ugc" referrerpolicy = "{{ $refPol }}" > Next {{ $webringName }} site< / a >
< / li >
2022-06-27 15:43:13 +00:00
{{- if ne (index $r 4) "null" }}
< li >
< a href = "{{- index $r 4 -}}" rel = "nofollow ugc" referrerpolicy = "{{ $refPol }}" > Random {{ $webringName }} site< / a >
< / li >
{{- end }}
2022-05-23 22:17:02 +00:00
< / ol >
< / li >
{{- end -}}
< / ol >
< / details >
2022-08-02 03:50:16 +00:00
< p > If you’ re part of a webring and would like me to join, just ask.< / p >