diff --git a/src/fellchensammlung/templates/fellchensammlung/lists/list-adoption-notices.html b/src/fellchensammlung/templates/fellchensammlung/lists/list-adoption-notices.html
deleted file mode 100644
index d68836c..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/lists/list-adoption-notices.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load i18n %}
-
- {% if adoption_notices %}
- {% for adoption_notice in adoption_notices %}
- {% include "fellchensammlung/partials/partial-adoption-notice-minimal.html" %}
- {% endfor %}
- {% else %}
-
{% translate "Keine Vermittlungen gefunden." %}
- {% endif %}
-
diff --git a/src/fellchensammlung/templates/fellchensammlung/lists/list-animal-shelters.html b/src/fellchensammlung/templates/fellchensammlung/lists/list-animal-shelters.html
deleted file mode 100644
index 3c50983..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/lists/list-animal-shelters.html
+++ /dev/null
@@ -1,10 +0,0 @@
-{% load i18n %}
-
- {% if rescue_organizations %}
- {% for rescue_organization in rescue_organizations %}
- {% include "fellchensammlung/partials/partial-rescue-organization.html" %}
- {% endfor %}
- {% else %}
-
{% translate "Keine Tierschutzorganisationen gefunden." %}
- {% endif %}
-
diff --git a/src/fellchensammlung/templates/fellchensammlung/lists/list-rules.html b/src/fellchensammlung/templates/fellchensammlung/lists/list-rules.html
deleted file mode 100644
index 323d273..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/lists/list-rules.html
+++ /dev/null
@@ -1,5 +0,0 @@
-
-{% for rule in rules %}
- {% include "fellchensammlung/partials/partial-rule.html" %}
-{% endfor %}
-
\ No newline at end of file
diff --git a/src/fellchensammlung/templates/fellchensammlung/partials/partial-adoption-notice-minimal.html b/src/fellchensammlung/templates/fellchensammlung/partials/partial-adoption-notice-minimal.html
deleted file mode 100644
index c8f2c5d..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/partials/partial-adoption-notice-minimal.html
+++ /dev/null
@@ -1,35 +0,0 @@
-{% load custom_tags %}
-{% load i18n %}
-
-
-
-
-
- {% if adoption_notice.location %}
- {{ adoption_notice.location.str_hr }}
- {% else %}
- {{ adoption_notice.location_string }}
- {% endif %}
-
-
- {% if adoption_notice.description_short %}
- {{ adoption_notice.description_short | render_markdown }}
- {% endif %}
-
- {% if adoption_notice.get_photo %}
-
-

-
- {% endif %}
-
diff --git a/src/fellchensammlung/templates/fellchensammlung/partials/partial-animal-card.html b/src/fellchensammlung/templates/fellchensammlung/partials/partial-animal-card.html
deleted file mode 100644
index 4f63c2c..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/partials/partial-animal-card.html
+++ /dev/null
@@ -1,28 +0,0 @@
-{% load i18n %}
-{% load custom_tags %}
-
-
-
- {% if animal.description %}
-
{{ animal.description | render_markdown }}
- {% endif %}
- {% for photo in animal.get_photos %}
-

- {% endfor %}
-
diff --git a/src/fellchensammlung/templates/fellchensammlung/partials/partial-announcement.html b/src/fellchensammlung/templates/fellchensammlung/partials/partial-announcement.html
deleted file mode 100644
index 5a229be..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/partials/partial-announcement.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{% load i18n %}
-{% load custom_tags %}
-
-
-
-
- {{ announcement.content | render_markdown }}
-
-
-
-
diff --git a/src/fellchensammlung/templates/fellchensammlung/partials/partial-rescue-organization.html b/src/fellchensammlung/templates/fellchensammlung/partials/partial-rescue-organization.html
deleted file mode 100644
index 65ee520..0000000
--- a/src/fellchensammlung/templates/fellchensammlung/partials/partial-rescue-organization.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{% load custom_tags %}
-{% load i18n %}
-
-
-
-
-
-
- {% if rescue_organization.location %}
- {{ rescue_organization.location.str_hr }}
- {% else %}
- {{ rescue_organization.location_string }}
- {% endif %}
-
-
- {% if rescue_organization.description_short %}
- {{ rescue_organization.description_short | render_markdown }}
- {% endif %}
-
-
-
\ No newline at end of file