wooly-vault/data/www/admin/base.html
PlexSheep 257ba9820b
All checks were successful
cargo devel CI / cargo CI (push) Successful in 2m5s
fix(meta): fix header position somewhat
2024-09-11 23:00:04 +02:00

16 lines
537 B
HTML

{% extends "base" %}
{% block title %}{{ title }}{% endblock %}
{% block header_ext %}
<span class="badge text-bg-danger rounded-pill">Admin</span>
{% endblock %}
{% 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 %}