Spookie/templates/base.html.twig

43 lines
1.1 KiB
Twig
Raw Normal View History

2021-05-30 17:27:39 +02:00
<!DOCTYPE html>
2021-06-01 18:48:20 +02:00
<html lang="en">
2021-05-30 17:27:39 +02:00
<head>
<meta charset="UTF-8">
2021-06-01 18:48:20 +02:00
<title>{% block title %}Spookie{% endblock %}</title>
2021-05-30 17:27:39 +02:00
{% block stylesheets %}
2021-06-01 18:48:20 +02:00
{{ encore_entry_link_tags('app') }}
2021-05-30 17:27:39 +02:00
{% endblock %}
</head>
<body>
2021-06-01 18:48:20 +02:00
{% include '_header.html.twig' %}
<div class="container-fluid text-center">
<div class="row content d-flex justify-content-sm-center">
<div class="col-sm-2 sidenav-left box" id="main-menu">
<p>
<a href="{{ path('blogs') }}">Blogs</a><br>
<a href="//git.24unix.net">git.24unix.net</a>
<a href="//pastebin.24unix.net">pastebin.24unix.net</a>
</p>
</div>
<div class="col-sm-9 text-left center-block" id="main-content">
{% block body %} {% endblock %}
</div>
<div class="col-sm-1 sidenav" id="spacer">
</div>
</div>
</div>
{% include '_footer.html.twig' %}
{% block javascripts %}
{{ encore_entry_script_tags('app') }}
{% endblock %}
2021-05-30 17:27:39 +02:00
</body>
</html>