Skip to content
Snippets Groups Projects
search_page.py 155 B
Newer Older
  • Learn to ignore specific revisions
  • Mia Wang's avatar
    Mia Wang committed
    from flask import Blueprint, render_template
    
    bp = Blueprint("home", __name__)
    
    @bp.route("/")
    def index():
        return render_template("home.html")