a small relational database with user-editable schema for manual data entry
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
yopa/yopa-web/resources/templates/_layout.html.tera

38 lines
789 B

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>{% block title -%}{%- endblock title %} &bull; YOPA</title>
<script src="/static/bundle.js"></script>
<link rel="stylesheet" href="/static/style.css">
</head>
<body>
<header class="navbar mb-2 mt-2">
<section class="navbar-section">
<a href="/" class="navbar-brand text-bold mr-2">
Yopa
</a>
{%- block nav -%}{%- endblock -%}
</section>
<section class="navbar-section">
YOPA is the best
</section>
</header>
<div class="content">
{%- if flash_error -%}
<div class="toast toast-error mb-2">
{{ flash_error }}
</div>
{%- endif -%}
{%- if flash_success -%}
<div class="toast toast-success mb-2">
{{ flash_success }}
</div>
{%- endif -%}
{%- block content -%}{%- endblock -%}
</div>
</body>
</html>