aboutsummaryrefslogtreecommitdiffstats
path: root/servo/templates/search/results/articles.html
diff options
context:
space:
mode:
Diffstat (limited to 'servo/templates/search/results/articles.html')
-rwxr-xr-xservo/templates/search/results/articles.html10
1 files changed, 10 insertions, 0 deletions
diff --git a/servo/templates/search/results/articles.html b/servo/templates/search/results/articles.html
new file mode 100755
index 0000000..8ea7535
--- /dev/null
+++ b/servo/templates/search/results/articles.html
@@ -0,0 +1,10 @@
+{% extends "search/spotlight.html" %}
+{% load humanize %}
+{% load servo_tags %}
+
+{% block second_column %}
+{% for i in articles %}
+ <h2>{{ i.title }}</h2>
+ {{ i.content|markdown }}
+{% endfor %}
+{% endblock second_column %}