2021-05-30 17:27:39 +02:00
|
|
|
<!DOCTYPE html>
|
2021-06-01 18:48:20 +02:00
|
|
|
<html lang="en">
|
2022-04-11 17:51:12 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="UTF-8">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{% block title %}Spookie{% endblock %}</title>
|
2021-06-01 18:48:20 +02:00
|
|
|
|
2022-04-11 17:51:12 +02:00
|
|
|
{% block stylesheets %}
|
|
|
|
{{ encore_entry_link_tags('app') }}
|
|
|
|
{% endblock %}
|
2021-06-01 18:48:20 +02:00
|
|
|
|
|
|
|
{% block javascripts %}
|
|
|
|
{{ encore_entry_script_tags('app') }}
|
|
|
|
{% endblock %}
|
|
|
|
|
2022-04-11 17:51:12 +02:00
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
|
|
|
|
{% include '_header.html.twig' %}
|
|
|
|
|
|
|
|
<div class="container-fluid text-center">
|
|
|
|
<div class="row content d-flex justify-content-md-start">
|
|
|
|
<div class="col-sm-1 sidenav-left box text-start" id="main-menu">
|
|
|
|
<i class="fa fa-lg fa-fw fa-file-code-o" aria-hidden="true"></i> <a href="/projects">Projects</a><br>
|
|
|
|
<i class="fa fa-lg fa-fw fa-gitea" aria-hidden="true"></i> <a href="//git.24unix.net" target="_blank">Gitea</a> <i class="fa fa-external-link" aria-hidden="true"></i><br>
|
|
|
|
<i class="fa fa-lg fa-fw fa-nextcloud" aria-hidden="true"></i> <a href="//cloud.24unix.net" target="_blank">NextCloud</a> <i class="fa fa-external-link" aria-hidden="true"></i>
|
|
|
|
<!-- <a href="//pastebin.24unix.net">pastebin.24unix.net</a>-->
|
|
|
|
</div>
|
|
|
|
<div class="col-sm-9 text-left center-block" id="main-content">
|
|
|
|
|
|
|
|
{% for message in app.flashes('success') %}
|
|
|
|
<div class="alert alert-success">
|
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% for message in app.flashes('error') %}
|
|
|
|
<div class="alert alert-danger">
|
|
|
|
{{ message }}
|
|
|
|
</div>
|
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% block body %}
|
|
|
|
{{ quote }}
|
|
|
|
{% endblock %}
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="col-sm-1 sidenav" id="spacer">
|
|
|
|
</div>
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
{% include '_footer.html.twig' %}
|
|
|
|
|
|
|
|
</body>
|
|
|
|
</html>
|