diff --git a/dojo_plugin/pages/index.py b/dojo_plugin/pages/index.py index 144afb816..5d387b069 100644 --- a/dojo_plugin/pages/index.py +++ b/dojo_plugin/pages/index.py @@ -1,4 +1,4 @@ -from flask import url_for, redirect +from flask import url_for, redirect, render_template from CTFd.views import static_html from .dojos import listing @@ -8,3 +8,7 @@ def static_html_override(route): return static_html(route) else: return listing("index.html") + +@app.route('/research') +def research(): + return render_template('research.html') diff --git a/dojo_theme/templates/research.html b/dojo_theme/templates/research.html new file mode 100644 index 000000000..0469d95b0 --- /dev/null +++ b/dojo_theme/templates/research.html @@ -0,0 +1,8 @@ +{% extends "base.html" %} + +{% block content %} +
pwn.college is a research platform where we conduct all sorts of research. If you have questions, you can reach out to us at research@pwn.college.
+