Theming, logo d'en-tête, page FPGA
Some checks failed
build configuration / build (push) Failing after 16s

This commit is contained in:
Sélène Corbineau 2024-09-23 22:16:34 +02:00
parent edbdb09cda
commit e304b79eff
13 changed files with 133 additions and 30 deletions

14
overrides/main.html Normal file
View file

@ -0,0 +1,14 @@
{% extends "base.html" %}
{% block top_nav %}
<div class="container">
<div class="terminal-nav">
<header class="terminal-logo">
<a href="{% if config.site_url %}{{ config.site_url}}{% else %}/{% endif %}">
<img src="/img/logo.png">
</a>
</header>
{% include "partials/top-nav/menu.html" %}
</div>
</div>
{% endblock %}