'html wont render on page

I wrote some html in my python site but whatever I do it just wont seem to render.

I think the issue is in this code segment right here but I'm not sure.


views = Blueprint(__name__, "views")


@views.route("/")
def home():
    return render_template("index.html", name="Andrew")

@views.route("/profile/<username>")
def profile(username):
    return render_template("index.html", name=username) ```




Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source