Skip to content

Commit

Permalink
description text in the dojos listing
Browse files Browse the repository at this point in the history
  • Loading branch information
zardus committed Jan 22, 2024
1 parent ae3efd3 commit 5f03383
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions dojo_theme/templates/dojos.html
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,13 @@ <h1>Dojos</h1>
<div class="container">
{% for type, dojos in typed_dojos.items() %}
<h2>{{ type | title }}</h2>
{% if type == "Topics" %}
<p>These dojos form the official the pwn.college curriculum. We recommend that you tackle them in order. Good luck!</p>
{% elif type == "Courses" %}
<p>We run a number of courses on this platform. For the most part, these courses import the above material, though some might introduce new concepts and challenges.</p>
{% elif type == "More" %}
<p>This section contains public dojos created by the pwn.college community. Completing these dojos will grant you emoji badges!</p>
{% endif %}
<ul class="card-list">
{% for dojo in dojos %}
{{ card(url_for("pwncollege_dojos.view_dojo", dojo=dojo.reference_id),
Expand Down

0 comments on commit 5f03383

Please sign in to comment.