19 lines
404 B
Python
19 lines
404 B
Python
"""Main routes for the application."""
|
|
from flask import Blueprint, render_template
|
|
|
|
bp = Blueprint("main", __name__)
|
|
|
|
|
|
@bp.route("/")
|
|
def index():
|
|
return render_template("index.html.jina")
|
|
|
|
|
|
@bp.route("/logs")
|
|
def logs():
|
|
return render_template("logs.html.jina", app_title="PaperScraper")
|
|
|
|
|
|
@bp.route("/about")
|
|
def about():
|
|
return render_template("about.html.jina", app_title="PaperScraper") |