diff --git a/templates/cavesearch.html b/templates/cavesearch.html
new file mode 100644
index 0000000..a555b44
--- /dev/null
+++ b/templates/cavesearch.html
@@ -0,0 +1,23 @@
+{% extends "base.html" %}
+{% load wiki_markup %}
+{% block title %}
+Cave search results for "{{ query_string }}"
+{% endblock%}
+
+{% block content %}
+
+
Troggle cave search
+
+Your search string, {{ query_string }},
+
+{% if found_entries %}
+ was found in the following {{found_entries.count}} cave underground descriptions and / or official names:
+
+ {% else %}
+ was not found in any cave underground descriptions and / or official names. Please try again.
+ {% endif %}
+{% endblock %}
\ No newline at end of file
diff --git a/templates/logbooksearch.html b/templates/logbooksearch.html
new file mode 100644
index 0000000..2fc00f8
--- /dev/null
+++ b/templates/logbooksearch.html
@@ -0,0 +1,21 @@
+{% extends "base.html" %}
+{% load wiki_markup %}
+{% block title %}Logbook search results for "{{ query_string }}"{% endblock%}
+
+{% block content %}
+
+ Troggle logbook search
+
+Your search string, {{ query_string }},
+
+{% if found_entries %}
+ was found in the following {{entry.count}} logbook titles and / or entries:
+
+ {% else %}
+ was not found in any logbook titles and / or entries. Please try again.
+ {% endif %}
+{% endblock %}
\ No newline at end of file