Jeroen De Meerleer
c7b7285403
- Removed unnecessary CSS properties from `base.scss` - Added `class="h-100"` to the `<html>` tag in `base.html.twig` for full height - Added `class="d-flex flex-column h-100"` to the `<body>` tag in `base.html.twig` for flexbox layout - Updated footer styling in `base.html.twig` with additional classes - Added `class="flex-shrink-0"` to the `<main>` tag in `page.html.twig`
23 lines
612 B
Twig
23 lines
612 B
Twig
<!DOCTYPE html>
|
|
<html class="h-100">
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% block title %}{% endblock %}{% if block("title") is not empty %} :: {% endif %}Jeroen De Meerleer</title>
|
|
|
|
{% block styles %}{% endblock %}
|
|
|
|
{% block scripts %}{% endblock %}
|
|
|
|
</head>
|
|
|
|
<body class="d-flex flex-column h-100">
|
|
{% block content %}{% endblock %}
|
|
{% block extrahtml %}{% endblock %}
|
|
<footer class="footer mt-auto py-2">
|
|
{% block footer %}{% endblock %}
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|