summaryrefslogtreecommitdiffstats
path: root/nfsw/templates
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2019-10-26 13:34:46 -0400
committerrsiddharth <s@ricketyspace.net>2019-10-26 13:34:46 -0400
commita739c428b0d78b8d128c4a40a001151451c48908 (patch)
tree277e8380777701a12b137af209309fd42e4df52f /nfsw/templates
parent6fef8e07e347e58e49ec70fe7e14f77238e65c87 (diff)
nfsw/templates/base.html: Use 'div' for "content" block instead of 'section'.
Diffstat (limited to 'nfsw/templates')
-rw-r--r--nfsw/templates/base.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/nfsw/templates/base.html b/nfsw/templates/base.html
index 771f2d3..2f57c95 100644
--- a/nfsw/templates/base.html
+++ b/nfsw/templates/base.html
@@ -12,8 +12,8 @@
<body>
{% block js %}{% endblock %}
- <section class="content">
+ <div class="content">
{% block content %}{% endblock %}
- </section>
+ </div>
</body>
</html>