summaryrefslogtreecommitdiff
path: root/design/templates/comments/base.html
diff options
context:
space:
mode:
Diffstat (limited to 'design/templates/comments/base.html')
-rw-r--r--design/templates/comments/base.html18
1 files changed, 10 insertions, 8 deletions
diff --git a/design/templates/comments/base.html b/design/templates/comments/base.html
index d4382ce..9828ff6 100644
--- a/design/templates/comments/base.html
+++ b/design/templates/comments/base.html
@@ -1,8 +1,10 @@
-{% extends 'base.html' %}
-{% block headtitle %}{% block title %}{% trans "Responses for page" %}{% endblock %}{% endblock %}
-
-{% block main %}
- <div id="comments-wrapper">
- {% block content %}{% endblock %}
- </div>
-{% endblock %}
+<!DOCTYPE html>
+<html>
+<head>
+ <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
+ <title>{% block title %}{% endblock %}</title>
+</head>
+<body>
+ {% block content %}{% endblock %}
+</body>
+</html>