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> </head>
<body> <body>
<header class=""> <header>
{% if page %}
{% include "partials/header-page.html" %}
{% else %}
{% include "partials/header.html" %} {% include "partials/header.html" %}
{% endif %}
</header> </header>
<main> <main>
<div> <div>

View File

@ -1,10 +1,6 @@
<div class="topbar"> {% include "partials/topbar.html" %}
<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" %} {% include "partials/sidenav.html" %}
{% if not page %}
<div class="content col--1-2"> <div class="content col--1-2">
<div> <div>
<a class="logo" href="/#"><img class="logo" src="{{ get_url(path="images/favicon.webp") }}" alt="Logo"></a> <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> données aux GAFAM ? Vous êtes au bon endroit !</strong></p>
</div> </div>
</div> </div>
{% endif %}

View File

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