diff --git a/website/web/templates/identifier_details.html b/website/web/templates/identifier_details.html
new file mode 100644
index 00000000..f34b9b26
--- /dev/null
+++ b/website/web/templates/identifier_details.html
@@ -0,0 +1,49 @@
+{% from "macros.html" import shorten_string %}
+
+
+
+
+ {{identifier_type}}: {{identifier}}
+
+
+
+
+ Capture Time |
+ Capture Title |
+ Landing page |
+
+
+
+ {% for capture_uuid, title, landing_page, capture_time in captures %}
+
+
+ {{capture_time}}
+ |
+
+
+ {{ title }}
+
+ |
+
+
+ {{ landing_page }}
+
+ |
+
+ {% endfor %}
+
+
diff --git a/website/web/templates/tree_identifiers.html b/website/web/templates/tree_identifiers.html
new file mode 100644
index 00000000..c7fd6ab7
--- /dev/null
+++ b/website/web/templates/tree_identifiers.html
@@ -0,0 +1,34 @@
+
+
+
+Click on the identifier to see the other captures it's been found in
+
+
+
+ Number of captures |
+ Identifier |
+ Identifier type |
+
+
+
+ {% for number_captures, identifier_type, identifier in identifiers %}
+
+ {{ number_captures }} |
+
+
+ {{ identifier }}
+
+ |
+ {{identifier_type}} |
+
+ {% endfor %}
+
+