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

64 lines
1.7 KiB
HTML
Raw Normal View History

2022-10-24 14:35:18 +00:00
<!DOCTYPE html>
2022-12-17 17:12:50 +00:00
<html lang="de">
2022-10-24 14:35:18 +00:00
<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") %}
2022-11-06 19:54:49 +00:00
<link rel="icon" type="image/x-icon" href="{{ image.url }}" />
2022-10-24 14:35:18 +00:00
2022-12-17 17:27:49 +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;
}
2022-11-21 12:03:46 +00:00
2022-10-24 23:11:48 +00:00
.grow-on-hover:hover {
transform: scale(1.1);
}
2022-11-21 12:03:46 +00:00
2022-10-24 23:11:48 +00:00
.underline-on-hover:hover {
text-decoration: underline;
}
</style>
2022-11-06 19:54:49 +00:00
{% 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>
2022-11-06 19:54:49 +00:00
{% block content %}
{% endblock content %}
2022-10-24 23:11:48 +00:00
<br>
2022-10-24 14:35:18 +00:00
</div>
2022-11-06 19:54:49 +00:00
<footer class="mt-auto"
style="background-image: linear-gradient(white, {{ config.extra.primary_color }} 15%);
text-align: center">
2022-10-24 14:35:18 +00:00
{% include "partials/footer.tera.html" %}
</footer>
2022-12-17 17:27:49 +00:00
<script src="{{ get_url(path='bootstrap/bootstrap.bundle.min.js') }}"></script>
2022-10-24 23:11:48 +00:00
2022-11-06 19:54:49 +00:00
{% block scripts %}
{% endblock scripts %}
2022-10-24 14:35:18 +00:00
</body>
</html>