diff --git a/docs/index.xml b/docs/index.xml
index 1cfac0d..5b02e17 100644
--- a/docs/index.xml
+++ b/docs/index.xml
@@ -66,4 +66,4 @@ Academics is good only as a concept. It’s implementation and system is
<h2 class="heading" id="follow-on">
Follow on<span class="heading__anchor"> <a href="#follow-on">#</a></span>
</h2><p><strong><a href="https://mastodon.social/@hyzen">Mastodon</a>:</strong> <a href="mailto:hyzen@mastodon.social">hyzen@mastodon.social</a></p>
-<p><strong>Lemmy:</strong> <a href="mailto:hyzen@lemmy.today">hyzen@lemmy.today</a></p>- Loginhttps://freedoms4.org/login/Mon, 01 Jan 0001 00:00:00 +0000your-email@example.com (Freedoms4)https://freedoms4.org/login/
- Sign Uphttps://freedoms4.org/signup/Mon, 01 Jan 0001 00:00:00 +0000your-email@example.com (Freedoms4)https://freedoms4.org/signup/
\ No newline at end of file
+<p><strong>Lemmy:</strong> <a href="mailto:hyzen@lemmy.today">hyzen@lemmy.today</a></p>
\ No newline at end of file
diff --git a/layouts/rss.xml b/layouts/rss.xml
index cc8ff59..52125fb 100644
--- a/layouts/rss.xml
+++ b/layouts/rss.xml
@@ -38,9 +38,11 @@
{{- else }}
{{- $pages = $pctx.Pages }}
{{- end }}
-{{- /* Exclude uninotes pages and the admin page from the feed */}}
+{{- /* Exclude uninotes pages, admin, login, and signup from the feed */}}
{{- $pages = where $pages "Section" "ne" "uninotes" }}
{{- $pages = where $pages "RelPermalink" "ne" "/admin/" }}
+{{- $pages = where $pages "RelPermalink" "ne" "/login/" }}
+{{- $pages = where $pages "RelPermalink" "ne" "/signup/" }}
{{- $limit := .Site.Config.Services.RSS.Limit }}
{{- if ge $limit 1 }}
{{- $pages = $pages | first $limit }}