save old version as reference before switching the branch

This commit is contained in:
tracer 2022-10-29 15:52:07 +02:00
parent e97f8e43bf
commit a488e489da
1 changed files with 11 additions and 10 deletions

View File

@ -4,6 +4,8 @@
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>{% block title %}Spookie{% endblock %}</title>
<link rel="icon"
href="data:image/svg+xml,<svg xmlns=%22http://www.w3.org/2000/svg%22 viewBox=%220 0 128 128%22><text y=%221.2em%22 font-size=%2296%22>⚫️</text></svg>">
{% block stylesheets %}
{{ encore_entry_link_tags('app') }}
@ -33,10 +35,10 @@
</head>
<body>
{% include template_dir ~ '_header.html.twig' %}
{% include '@default/_header.html.twig' %}
<div class="container-fluid mt-3">
<nav id="sidebar" class="vh-100 me-3">
<!-- sidebar -->
<nav id="sidebar" class="m-3">
<ul class="list-group ml1" id="main-menu">
<li class="list-group-item list-group-item-action">
<a href="{{ path('app_projects') }}" class="text-decoration-none">
@ -66,7 +68,6 @@
<!-- <a href="//pastebin.24unix.net">pastebin.24unix.net</a>-->
</ul>
</nav>
</div>
<div class="container-fluid" id="content">
{% for message in app.flashes('success') %}
@ -81,21 +82,21 @@
</div>
{% endfor %}
{% block body %}
<div class="col">
<div class="col">
{% block body %}
<h1 class="q-title-show">Quote of the Moment</h1>
<div class="q-display p-3">
{# <i class="fa fa-quote-left"></i> #}
<p class="d-inline">
{{ quote | markdown_to_html }}
{{ quote | raw }}
</p>
</div>
</div>
{% endblock %}
{% endblock %}
</div>
</div>
{% include template_dir ~ '_footer.html.twig' %}
{% include '@default/_footer.html.twig' %}
</body>
</html>