Created a New about.html file:
{% extends "layout.html" %} {% block title %}
This is a page about stuff. It's my page about stuff.
{% endblock %}Added a line of code to layout.html:
I created an about function in the simple.py file.
@app.route("/about") def about(): return render_template("about.html", now=datetime.datetime.now())