summaryrefslogtreecommitdiff
path: root/design/templates/comments/base.html
diff options
context:
space:
mode:
authorluxagraf <sng@luxagraf.net>2014-11-13 13:22:07 -0500
committerluxagraf <sng@luxagraf.net>2014-11-13 13:22:07 -0500
commite2f9e4ff3e3443a6875592d823e4e5739a3b7bd1 (patch)
tree8ef5055ae9ef49ffb15476838655c2f001ac50d8 /design/templates/comments/base.html
parenta44f67ef290e120736cf881b326eb5145a3d66f7 (diff)
Turned comments back on. See how this goes.
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>