summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobby Zambito <contact@robbyzambito.me>2020-12-17 07:13:24 -0500
committerRobby Zambito <contact@robbyzambito.me>2020-12-17 07:13:24 -0500
commit7d183b60fa66ac5bc47297332c8301208a67d83f (patch)
treeefeed354af1f04339fa9e81a5f2272be680c5b70
parent2fbaf17bc5d3c565ff8c36bbc6bc250198a16f4c (diff)
Added some non hamlet instances to the get started page
-rw-r--r--content/list.md9
-rw-r--r--data/nonhamlet.json6
-rw-r--r--layouts/shortcodes/nonhamlet.html9
3 files changed, 23 insertions, 1 deletions
diff --git a/content/list.md b/content/list.md
index c840c8a..cd43828 100644
--- a/content/list.md
+++ b/content/list.md
@@ -11,6 +11,13 @@ If you don't want to join a local server, you can still join the
network by joining any <a href="https://pleroma.social/">Pleroma</a>
or <a href="https://joinmastodon.org/">Mastodon</a> instance.
-<br>
{{< instances >}}
+
+<h3 class="is-size-3">Non-Hamlet instances</h3>
+
+These instances are not Hamlet instances, but you may find some of these
+interesting.
+
+{{< nonhamlet >}}
+
diff --git a/data/nonhamlet.json b/data/nonhamlet.json
new file mode 100644
index 0000000..fcbcf91
--- /dev/null
+++ b/data/nonhamlet.json
@@ -0,0 +1,6 @@
+{
+ "Mastodon.social": "https://mastodon.social/about",
+ "Mastodon.online": "https://mastodon.online/about",
+ "Zoinks.one": "https://zoinks.one",
+ "Zambito.xyz": "https://social.zambito.xyz"
+}
diff --git a/layouts/shortcodes/nonhamlet.html b/layouts/shortcodes/nonhamlet.html
new file mode 100644
index 0000000..fbb3d86
--- /dev/null
+++ b/layouts/shortcodes/nonhamlet.html
@@ -0,0 +1,9 @@
+<div class="container box">
+ <ul>
+ {{ range $instance, $url := .Site.Data.nonhamlet }}
+ <li>
+ <a href="{{ $url }}">{{ $instance }}</a>
+ </li>
+ {{ end }}
+ </ul>
+</div>