+
+{% endfor %}
+
diff --git a/templates/blog/partials/search/post_list.html b/templates/blog/partials/search/post_list.html
new file mode 100644
index 00000000..811c417e
--- /dev/null
+++ b/templates/blog/partials/search/post_list.html
@@ -0,0 +1,23 @@
+{% load tz %}
+{% load static %}
+{% for post in posts %}
+ {% comment %} This is the plain small version for search list {% endcomment %}
+
+
+{% endfor %}
\ No newline at end of file
diff --git a/templates/blog/partials/search/user_list.html b/templates/blog/partials/search/user_list.html
new file mode 100644
index 00000000..3493508c
--- /dev/null
+++ b/templates/blog/partials/search/user_list.html
@@ -0,0 +1,13 @@
+{% load static %}
+{% for user in users %}
+
+{% endfor %}
\ No newline at end of file
diff --git a/templates/blog/search.html b/templates/blog/search.html
index a709ccb0..d5bf9812 100644
--- a/templates/blog/search.html
+++ b/templates/blog/search.html
@@ -14,7 +14,7 @@
Sort By
-
+ {% comment %} {% endcomment %}
Order
@@ -29,9 +29,40 @@
Search Results
-
Sorry, this feature is under construction, and will be available soon.
-
In case, you were curious, your query returned {{ search_results|length }} results.
+
Your search for "{{ request.GET.q }}" returned {{ search_results }} Result{% if search_results != 1 %}s{% endif %}.
+
+ {% if 'posts' in search_in %}
+
Posts
+ {% if posts|length != 0 %}
+ {% include 'blog/partials/search/post_list.html' %}
+ {% else %}
+
No posts found.
+ {% endif %}
+
+ {% endif %}
+
+ {% if 'users' in search_in %}
+
Users
+ {% if users|length != 0 %}
+ {% include 'blog/partials/search/user_list.html' %}
+ {% else %}
+
No users found.
+ {% endif %}
+ {% endif %}
+
+ {% if 'comments' in search_in %}
+
Comments
+ {% if comments|length != 0 %}
+ {% include 'blog/partials/search/comment_list.html' %}
+ {% else %}
+
No comments found.
+ {% endif %}
+ {% endif %}
+
{% endblock %}
+{% block scripts %}
+{% include 'blog/partials/mathjax.html' %}
+{% endblock %}
\ No newline at end of file
--
cgit v1.2.3