Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion dojo_plugin/pages/index.py
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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')
8 changes: 8 additions & 0 deletions dojo_theme/templates/research.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
{% extends "base.html" %}

{% block content %}
<div class="container">
<h1>Research at pwn.college</h1>
<p>pwn.college is a research platform where we conduct all sorts of research. If you have questions, you can reach out to us at <a href="mailto:[email protected]">[email protected]</a>.</p>
</div>
{% endblock %}
Loading