"""Main routes for the application.""" from flask import Blueprint, render_template bp = Blueprint("main", __name__) @bp.route("/") def index(): return render_template("index.html.jinja") @bp.route("/logs") def logs(): return render_template("logs.html.jinja", app_title="PaperScraper") @bp.route("/about") def about(): return render_template("about.html.jinja", app_title="PaperScraper")