2024-09-08 14:19:58 +02:00
|
|
|
{% extends "base" %}
|
|
|
|
{% block title %}{{ title }}{% endblock %}
|
2024-09-11 21:13:46 +02:00
|
|
|
{% block header_ext %}
|
|
|
|
<div class="col-12 col-mx-auto col-me-0 text-center justify-content-center">
|
|
|
|
<span class="badge text-bg-warning rounded-pill">Admin</span>
|
|
|
|
</div>
|
|
|
|
{% endblock %}
|
2024-09-08 14:19:58 +02:00
|
|
|
{% 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">
|
|
|
|
{% block content %}{% endblock content %}
|
|
|
|
{% endblock %}
|