2024-09-08 10:50:44 +02:00
|
|
|
{% extends "base" %}
|
|
|
|
{% block main %}
|
|
|
|
<h1 class="text-body-emphasis">{{title}}</h1>
|
|
|
|
<p class="fs-5 col-md-8">
|
|
|
|
You have reached the {{title}}. This site can be used by
|
|
|
|
the host of the challenge to see the challenge progress, solution, and
|
|
|
|
hints for that challenge. This site is <b>NOT</b> part of the
|
|
|
|
challenge.
|
|
|
|
</p>
|
|
|
|
|
|
|
|
<hr class="mb-5">
|
|
|
|
|
|
|
|
<div class="row g-5">
|
|
|
|
<div class="col-md-6">
|
|
|
|
<h2 class="text-body-emphasis">Challenges</h2>
|
|
|
|
<p>
|
|
|
|
There are cuttently {{ challenges_amount }} active challenges.
|
|
|
|
</p>
|
|
|
|
<ul class="list-unstyled ps-0">
|
|
|
|
{% for challenge in challenges %}
|
2024-09-07 17:10:02 +02:00
|
|
|
<li>
|
2024-09-08 10:50:44 +02:00
|
|
|
<a class="icon-link mb-1" href="challenge/{{ challenge.id }}">
|
|
|
|
<svg class="bi" width="16" height="16">
|
|
|
|
<use xlink:href="#arrow-right-circle" />
|
2024-09-07 17:10:02 +02:00
|
|
|
</svg>
|
2024-09-08 10:50:44 +02:00
|
|
|
{{ challenge.id }} — {{ challenge.title }}
|
|
|
|
</a>
|
2024-09-07 17:10:02 +02:00
|
|
|
</li>
|
2024-09-08 10:50:44 +02:00
|
|
|
{% endfor %}
|
2024-09-07 17:10:02 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
2024-09-08 10:50:44 +02:00
|
|
|
</div>
|
|
|
|
{% endblock %}
|