diff --git a/CTFd/views.py b/CTFd/views.py index 8882396e..d83cf410 100644 --- a/CTFd/views.py +++ b/CTFd/views.py @@ -348,7 +348,7 @@ def static_html(route): if page.auth_required and authed() is False: return redirect(url_for("auth.login", next=request.full_path)) - return render_template("page.html", content=page.html) + return render_template("page.html", content=page.html, title=page.title) @views.route("/tos")