47 lines
1.4 KiB
Plaintext
47 lines
1.4 KiB
Plaintext
{% extends './barebone.njk' %}
|
|
{% import 'macros.njk' as macros %}
|
|
|
|
{% block _stylesheets %}
|
|
{{ super() }}
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
{% block stylesheets %}{% endblock %}
|
|
{% endblock %}
|
|
{% block _scripts %}
|
|
{{ super() }}
|
|
{% block scripts %}{% endblock %}
|
|
{% endblock %}
|
|
|
|
{% block header %}
|
|
<a href="/" class="logo"><img src="/img/logo.svg" alt="Logo"> ily.li</a>
|
|
<nav>
|
|
<ul>
|
|
<li><a href="{{ route('about') }}"><i data-feather="info"></i> About</a></li>
|
|
{% if user %}
|
|
<li><a href="{{ route('file-upload') }}"><i data-feather="upload"></i>File uploader</a></li>
|
|
<li><a href="{{ route('file-manager') }}"><i data-feather="folder"></i>File manager</a></li>
|
|
<li><a href="{{ route('logout') }}"><i data-feather="log-out"></i> Logout</a></li>
|
|
{% else %}
|
|
<li><a href="{{ route('auth') }}"><i data-feather="user"></i> Login / Register</a></li>
|
|
{% endif %}
|
|
</ul>
|
|
</nav>
|
|
{% endblock %}
|
|
|
|
{% block _body %}
|
|
<div class="container">
|
|
{{ macros.messages(flash) }}
|
|
</div>
|
|
|
|
<main>
|
|
{% if h1 %}
|
|
<h1>{{ h1 }}</h1>
|
|
{% endif %}
|
|
{% if subtitle %}
|
|
<p>{{ subtitle }}</p>
|
|
{% endif %}
|
|
|
|
{% block body %}{% endblock %}
|
|
</main>
|
|
{% endblock %}
|
|
|
|
{% block footer %}ily.li v{{ app_version }} - all rights reserved.{% endblock %} |