From c421139ea893ea0e2f68d23620dd3d91b6feecbe Mon Sep 17 00:00:00 2001 From: soaos Date: Fri, 3 Apr 2026 16:06:30 -0400 Subject: Initial Commit (Fresh Start) --- data/templates/grid.html | 23 +++++++++++++++++ data/templates/index.html | 60 ++++++++++++++++++++++++++++++++++++++++++++ data/templates/random.html | 29 +++++++++++++++++++++ data/templates/redirect.html | 18 +++++++++++++ 4 files changed, 130 insertions(+) create mode 100644 data/templates/grid.html create mode 100644 data/templates/index.html create mode 100644 data/templates/random.html create mode 100644 data/templates/redirect.html (limited to 'data/templates') diff --git a/data/templates/grid.html b/data/templates/grid.html new file mode 100644 index 0000000..2c187b1 --- /dev/null +++ b/data/templates/grid.html @@ -0,0 +1,23 @@ + + + + + + {{ ring_name }} List + + +
+

{{ ring_name }} List

+

{{ ring_description }}

+

Add all sites with declared RSS feeds to your feed reader with this OPML link.

+ + {{ grid_of_sites | safe }} + +
+
+

Last updated: {{ current_time }}

+

Powered by ringfairy!

+
+
+ + diff --git a/data/templates/index.html b/data/templates/index.html new file mode 100644 index 0000000..e7f6503 --- /dev/null +++ b/data/templates/index.html @@ -0,0 +1,60 @@ + + + + + + {{ ring_name }} List + + +

{{ ring_name }} List

+

{{ ring_description }}

+

Add all sites with declared RSS feeds to your feed reader with this OPML link.

+ + {% if sites %} + + + + + + + + + + + {% for site in sites %} + + + + + + + {% endfor %} + +
NameURLAboutOwner
{{ site.website.slug }} + {{ site.website.url }} + {% if site.website.rss %} + [rss] + {% endif %} + {% if site.website.atom %} + [atom] + {% endif %} + {{ site.website.about | default(value="") }}{{ site.website.owner | default(value="") }}
+ {% endif %} + + {% if failed_sites %} + The following member sites were not included in this iteration of the webring: + + {% endif %} + + +
+ + + diff --git a/data/templates/random.html b/data/templates/random.html new file mode 100644 index 0000000..b4a5816 --- /dev/null +++ b/data/templates/random.html @@ -0,0 +1,29 @@ + + + + + Redirecting... + + + + + + + +

A fairy is guiding you to a most suitable destination...

+ + + diff --git a/data/templates/redirect.html b/data/templates/redirect.html new file mode 100644 index 0000000..0ae260d --- /dev/null +++ b/data/templates/redirect.html @@ -0,0 +1,18 @@ + + + + + + Redirecting... + + + + +

A fairy is teleporting you to {{ url }}...!

+ + -- cgit v1.3-2-g0d8e