# SPDX-FileCopyrightText: 2021 Steven Guikal <void@fluix.one>
#
# SPDX-License-Identifier: AGPL-3.0-only
from flask import Blueprint, render_template
flatpages = Blueprint("flatpages", __name__, template_folder="templates")
@flatpages.route("/")
def index():
return render_template("index.html")
@flatpages.route("/chat")
def chat():
return render_template("chat.html")
@flatpages.route("/talk")
def talk():
return render_template("talk.html")
@flatpages.route("/coc")
def coc():
return render_template("coc.html")
@flatpages.route("/privacy")
def privacy():
return render_template("privacy.html")
@flatpages.route("/help")
def help():
return render_template("help.html")
@flatpages.route("/contact")
def contact():
return render_template("contact.html")