improved templates

This commit is contained in:
julien 2025-01-16 11:52:21 +01:00
parent 56bb38b802
commit 4205bde7b6
4 changed files with 8 additions and 14 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 29 KiB

View File

@ -7,12 +7,8 @@
</head>
<body>
<header class="">
{% if page %}
{% include "partials/header-page.html" %}
{% else %}
<header>
{% include "partials/header.html" %}
{% endif %}
</header>
<main>
<div>

View File

@ -1,10 +1,6 @@
<div class="topbar">
<a class="" href="https://webmail.netig.net" target="_blank">NETmail</a>
<a class="" href="https://cloud.netig.net" target="_blank">NETcloud</a>
<a class="" href="https://git.netig.net" target="_blank">NETgit</a>
</div>
{% include "partials/topbar.html" %}
{% include "partials/sidenav.html" %}
{% if not page %}
<div class="content col--1-2">
<div>
<a class="logo" href="/#"><img class="logo" src="{{ get_url(path="images/favicon.webp") }}" alt="Logo"></a>
@ -17,3 +13,4 @@
données aux GAFAM ? Vous êtes au bon endroit !</strong></p>
</div>
</div>
{% endif %}

View File

@ -1,7 +1,8 @@
<div class="topbar">
{% if page %}
<a class="logo--min" href="/#"><img class="logo" src="{{ get_url(path="images/favicon.webp") }}" alt="Logo"></a>
{% endif %}
<a class="" href="https://webmail.netig.net" target="_blank">NETmail</a>
<a class="" href="https://cloud.netig.net" target="_blank">NETcloud</a>
<a class="" href="https://git.netig.net" target="_blank">NETgit</a>
</div>
{% include "partials/sidenav.html" %}