diff --git a/articles/static/style.css b/articles/static/style.css
index b4b5582..99f1819 100644
--- a/articles/static/style.css
+++ b/articles/static/style.css
@@ -229,6 +229,14 @@ textarea, input {
color: var(--main3);
}
+.comment:target {
+ background-color: var(--warning-background);
+}
+
+.permalink {
+ font-size: 80%;
+}
+
/* MESSAGES */
.messages p {
background-color: var(--background2);
diff --git a/articles/templates/articles/article_detail.html b/articles/templates/articles/article_detail.html
index caa74b9..18956d4 100644
--- a/articles/templates/articles/article_detail.html
+++ b/articles/templates/articles/article_detail.html
@@ -11,35 +11,5 @@
{{ article.get_formatted_content|safe }}
-
+ {% include 'articles/comment_snippet.html' %}
{% endblock %}
diff --git a/articles/templates/articles/comment_snippet.html b/articles/templates/articles/comment_snippet.html
new file mode 100644
index 0000000..2ac2681
--- /dev/null
+++ b/articles/templates/articles/comment_snippet.html
@@ -0,0 +1,32 @@
+
Comments
- {% for comment in comments %} -- {{ comment.username }} | - - {% include "articles/admin_link_snippet.html" with article=comment %} -
-- {{ comment.content|linebreaksbr }} -
-