diff options
-rw-r--r-- | apioforum/static/style.css | 3 | ||||
-rw-r--r-- | apioforum/templates/view_forum.html | 4 |
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%} |