generated from PlexSheep/rs-base
feat(meta): add admin badge to admin section
This commit is contained in:
parent
99a01d07fa
commit
3204047b28
|
@ -1,5 +1,10 @@
|
|||
{% extends "base" %}
|
||||
{% block title %}{{ title }}{% endblock %}
|
||||
{% 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 %}
|
||||
{% block main %}
|
||||
<h1 class="text-body-emphasis">{{title}}</h1>
|
||||
<p class="fs-5 col-md-8">
|
||||
|
|
|
@ -171,12 +171,16 @@
|
|||
<!-- basically everything but with some margin -->
|
||||
<div class="col-lg-8 mx-auto p-4 py-md-5">
|
||||
<header class="d-flex align-items-center pb-3 mb-5 border-bottom">
|
||||
<a href="/" class="d-flex align-items-center text-body-emphasis text-decoration-none">
|
||||
<svg class="bi me-2" width="40" height="32">
|
||||
<use xlink:href="#vault" />
|
||||
</svg>
|
||||
<span class="fs-4">{{app_name}}</span>
|
||||
</a>
|
||||
<div class="col-md-3 col-12 col-md-auto">
|
||||
<a href="/" class="d-flex align-items-center text-body-emphasis text-decoration-none">
|
||||
<svg class="bi me-2" width="40" height="32">
|
||||
<use xlink:href="#vault" />
|
||||
</svg>
|
||||
<span class="fs-4">{{app_name}}</span>
|
||||
</a>
|
||||
|
||||
</div>
|
||||
{% block header_ext %}{% endblock %}
|
||||
</header>
|
||||
|
||||
<main>
|
||||
|
|
Loading…
Reference in New Issue