save old version as reference before switching the branch
This commit is contained in:
parent
e97f8e43bf
commit
a488e489da
|
@ -4,6 +4,8 @@
|
||||||
<meta charset="UTF-8">
|
<meta charset="UTF-8">
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||||
<title>{% block title %}Spookie{% endblock %}</title>
|
<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 %}
|
{% block stylesheets %}
|
||||||
{{ encore_entry_link_tags('app') }}
|
{{ encore_entry_link_tags('app') }}
|
||||||
|
@ -33,10 +35,10 @@
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
{% include template_dir ~ '_header.html.twig' %}
|
{% include '@default/_header.html.twig' %}
|
||||||
|
|
||||||
<div class="container-fluid mt-3">
|
<!-- sidebar -->
|
||||||
<nav id="sidebar" class="vh-100 me-3">
|
<nav id="sidebar" class="m-3">
|
||||||
<ul class="list-group ml1" id="main-menu">
|
<ul class="list-group ml1" id="main-menu">
|
||||||
<li class="list-group-item list-group-item-action">
|
<li class="list-group-item list-group-item-action">
|
||||||
<a href="{{ path('app_projects') }}" class="text-decoration-none">
|
<a href="{{ path('app_projects') }}" class="text-decoration-none">
|
||||||
|
@ -66,7 +68,6 @@
|
||||||
<!-- <a href="//pastebin.24unix.net">pastebin.24unix.net</a>-->
|
<!-- <a href="//pastebin.24unix.net">pastebin.24unix.net</a>-->
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
|
||||||
|
|
||||||
<div class="container-fluid" id="content">
|
<div class="container-fluid" id="content">
|
||||||
{% for message in app.flashes('success') %}
|
{% for message in app.flashes('success') %}
|
||||||
|
@ -81,21 +82,21 @@
|
||||||
</div>
|
</div>
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
|
|
||||||
{% block body %}
|
<div class="col">
|
||||||
<div class="col">
|
{% block body %}
|
||||||
<h1 class="q-title-show">Quote of the Moment</h1>
|
<h1 class="q-title-show">Quote of the Moment</h1>
|
||||||
<div class="q-display p-3">
|
<div class="q-display p-3">
|
||||||
{# <i class="fa fa-quote-left"></i> #}
|
{# <i class="fa fa-quote-left"></i> #}
|
||||||
<p class="d-inline">
|
<p class="d-inline">
|
||||||
{{ quote | markdown_to_html }}
|
{{ quote | raw }}
|
||||||
</p>
|
</p>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
{% endblock %}
|
||||||
{% endblock %}
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{% include template_dir ~ '_footer.html.twig' %}
|
{% include '@default/_footer.html.twig' %}
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
</html>
|
</html>
|
Loading…
Reference in New Issue