templates: added shell page with footer
This commit is contained in:
parent
6654faf2af
commit
fe6ab1bd71
2 changed files with 29 additions and 0 deletions
17
crates/ezidam/templates/shell.html.tera
Normal file
17
crates/ezidam/templates/shell.html.tera
Normal file
|
|
@ -0,0 +1,17 @@
|
|||
{% extends "base" %}
|
||||
{% block page %}
|
||||
<body>
|
||||
<script src="/js/demo-theme.min.js"></script>
|
||||
<div class="page">
|
||||
{% include "shell/header" %}
|
||||
<div class="page-wrapper">
|
||||
{% block content %}{% endblock content %}
|
||||
{% include "shell/footer" %}
|
||||
</div>
|
||||
</div>
|
||||
<!-- Libs JS -->
|
||||
<!-- Tabler Core -->
|
||||
<script src="/js/tabler.min.js" defer></script>
|
||||
<script src="/js/demo.min.js" defer></script>
|
||||
</body>
|
||||
{% endblock page %}
|
||||
12
crates/ezidam/templates/shell/footer.html.tera
Normal file
12
crates/ezidam/templates/shell/footer.html.tera
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
<footer class="footer footer-transparent d-print-none">
|
||||
<div class="container-xl">
|
||||
<div class="row text-center align-items-center flex-row-reverse">
|
||||
<div class="col-lg-auto ms-lg-auto">
|
||||
<ul class="list-inline list-inline-dots mb-0">
|
||||
<li class="list-inline-item">Version {{ version }}</li>
|
||||
<li class="list-inline-item">{{ now() | date(format="%F %T") }}</li>
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</footer>
|
||||
Loading…
Add table
Add a link
Reference in a new issue