aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorubq323 <ubq323>2021-06-24 01:04:11 +0000
committerubq323 <ubq323>2021-06-24 01:04:11 +0000
commitd1bb2fa1b24ecaa54e1a9fc0cfd95aaa9a4907c9 (patch)
tree08789595ac416fcb0b331bf451f1b3789a47fb74
parentebe4f5ed73c1bf3641907420c061dfe047e6a9a8 (diff)
unwideify the trunk as well
-rw-r--r--apioforum/static/style.css3
-rw-r--r--apioforum/templates/view_forum.html4
2 files changed, 1 insertions, 6 deletions
diff --git a/apioforum/static/style.css b/apioforum/static/style.css
index da580bf..bb57513 100644
--- a/apioforum/static/style.css
+++ b/apioforum/static/style.css
@@ -189,9 +189,6 @@ main {
max-width: 60ch;
margin: auto;
}
-main.widemain {
- max-width: 120ch;
-}
blockquote {
margin-left: 10px;
diff --git a/apioforum/templates/view_forum.html b/apioforum/templates/view_forum.html
index d1489c8..b27088d 100644
--- a/apioforum/templates/view_forum.html
+++ b/apioforum/templates/view_forum.html
@@ -1,8 +1,7 @@
{% extends 'base.html' %}
{% from 'common.html' import ts, tag, disp_user, post_url %}
{% block header %}<h1>{% block title %}apioforum{%endblock%}</h1>{%endblock%}
-{%block nmcontent%}
-<main class="widemain">
+{%block content%}
<p>welcome to the apioforum</p>
<p>forum rules: do not be a bad person. do not do bad things.</p>
{% if g.user %}
@@ -47,5 +46,4 @@
</div>
{%endfor%}
</div>
-</main>
{%endblock%}