1
0
Fork 0
yinghong-massage.de/templates/base.tera.html

65 lines
1.7 KiB
HTML
Raw Normal View History

2022-10-24 14:35:18 +00:00
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<title>
{% if page.title %}
{{ page.title }}
{% elif section.title %}
{{ section.title }}
{% else %}
{{ config.title }}
{% endif %}
</title>
{% set image = resize_image(path=config.extra.logo_path, width=32, height=32, op="fill") %}
<link
rel="icon"
type="image/x-icon"
href="{{ image.url }}"
/>
2022-11-02 18:59:03 +00:00
<link href="{{ get_url(path='bootstrap/bootstrap.min.css') }}" rel="stylesheet"/>
2022-10-24 23:11:48 +00:00
<style>
.grow-on-hover {
transition: all .3s ease-in-out;
}
.grow-on-hover:hover {
transform: scale(1.1);
}
.underline-on-hover:hover {
text-decoration: underline;
}
</style>
{% block styles %}{% endblock styles %}
2022-10-24 14:35:18 +00:00
</head>
<body class="d-flex flex-column min-vh-100">
{% include "partials/nav.tera.html" %}
<div class="container-xxl">
<br>
{% block content %}{% endblock content %}
2022-10-24 23:11:48 +00:00
<br>
2022-10-24 14:35:18 +00:00
</div>
<footer
class="mt-auto"
style="background-image: linear-gradient(white, {{ config.extra.primary_color }} 15%); text-align: center;"
>
{% include "partials/footer.tera.html" %}
</footer>
2022-11-02 18:59:03 +00:00
<script src="{{ get_url(path='bootstrap/bootstrap.bundle.min.js') }}"></script>
2022-10-24 23:11:48 +00:00
{% block scripts %}{% endblock scripts %}
2022-10-24 14:35:18 +00:00
</body>
</html>