diff --git a/app/app.py b/app/app.py index d8930ce..d8d6903 100644 --- a/app/app.py +++ b/app/app.py @@ -6,12 +6,12 @@ app = Flask(__name__) @app.route('/') def home(): - return render_template('index.j2', instanceName="nyxask.nixos.internal") + return render_template('index.j2', instanceName="nyxask.nixos.internal" instanceBranding="NyxAsk Testing Instance") @app.route('/auth/login/') def login(): - return render_template('login.j2', instanceName="nyxask.nixos.internal") + return render_template('login.j2', instanceName="nyxask.nixos.internal" instanceBranding="NyxAsk Testing Instance") @app.route('/assets/css/index.css') diff --git a/app/templates/index.j2 b/app/templates/index.j2 index 4ad1e27..24a6d65 100644 --- a/app/templates/index.j2 +++ b/app/templates/index.j2 @@ -1,6 +1,7 @@ {% from 'header.j2' import header_home %}
+