Source code for static

"""
Static pages: home, about
"""

from flask import render_template


[docs] def static_home_page(): return render_template("pages/static/home.html")
[docs] def static_about_page(): return render_template("pages/static/about.html")