From 2e9cef8e2c2d59390955c71b8ae5418f5505b560 Mon Sep 17 00:00:00 2001 From: 0xjrx Date: Thu, 27 Mar 2025 11:50:45 +0100 Subject: [PATCH] feat: Add info page and entry for every team member Refs: OPS-90 --- senju/main.py | 14 ++++ senju/templates/base.html | 7 +- senju/templates/info.html | 140 ++++++++++++++++++++++++++++++++++++++ 3 files changed, 158 insertions(+), 3 deletions(-) create mode 100644 senju/templates/info.html diff --git a/senju/main.py b/senju/main.py index d22eae8..07886ed 100644 --- a/senju/main.py +++ b/senju/main.py @@ -201,3 +201,17 @@ def favicon(): return send_from_directory(os.path.join(app.root_path, 'static/img'), 'favicon.ico', mimetype='image/vnd.microsoft.icon') + +@app.route('/info') +def info_view(): + """ + Render the info page. + + :return: The info.html template with title "Info". + :rtype: flask.Response + """ + return render_template( + "info.html", + title="Info" + ) + diff --git a/senju/templates/base.html b/senju/templates/base.html index 6087e01..3ffc00f 100644 --- a/senju/templates/base.html +++ b/senju/templates/base.html @@ -48,9 +48,10 @@ {% if request.endpoint == 'scan_view' %} bg-gray-900 text-white {% else %} text-gray-300 hover:bg-gray-700 hover:text-white {% endif %}"> Image scanning - - Information + + Info diff --git a/senju/templates/info.html b/senju/templates/info.html new file mode 100644 index 0000000..81338c9 --- /dev/null +++ b/senju/templates/info.html @@ -0,0 +1,140 @@ +{% extends "base.html" %} + +{% block content %} + + +
+
+ PlexSheep +
+

PlexSheep

+

Backend Developer

+

Passionate about cybersecurity and hacking.

+

plexsheep@example.com

+

+
+
+ +
+ 0xjrx +
+

0xjrx

+

Frontend Developer

+

Experienced in networking and malware research.

+

mrmarquard@protonmail.com

+

+
+
+ +
+ 0xalivecow +
+

0xalivecow

+

Backend Developer

+

Software engineer focused on security tools.

+

0xalivecow@example.com

+

+
+
+ +
+ Amrasil +
+

Amrasil

+

Documentation and Code coverage

+

Exploring cryptography and adversarial AI.

+

amrasil@example.com

+

+
+
+
+{% endblock %} +