summaryrefslogtreecommitdiff
path: root/app
diff options
context:
space:
mode:
authorerdgeist <erdgeist@erdgeist.org>2025-01-28 22:52:26 +0100
committererdgeist <erdgeist@erdgeist.org>2025-01-28 22:52:26 +0100
commit90d12694e5ec45b249e826abb8dbdaccd3ff5220 (patch)
treef6cc3d3cc7a2dcea48e0e8ac67ce9764c432b055 /app
parentbe2647c7990cd7bc0ebdb996a7e565743b6857b1 (diff)
Add some missing files
Diffstat (limited to 'app')
-rw-r--r--app/views/admin/search_results.html.erb7
1 files changed, 7 insertions, 0 deletions
diff --git a/app/views/admin/search_results.html.erb b/app/views/admin/search_results.html.erb
new file mode 100644
index 0000000..671b665
--- /dev/null
+++ b/app/views/admin/search_results.html.erb
@@ -0,0 +1,7 @@
1<h1>Search Results</h1>
2
3<ul>
4<%- @results.each do |result| %>
5 <li><a href="<%= node_path(result) %>"><%= result.title %></a></li>
6<% end %>
7</ul>