Merge branch 'main' into fix/style

This commit is contained in:
Óscar
2023-02-07 20:11:38 +01:00
committed by GitHub
10 changed files with 79 additions and 13 deletions

View File

@@ -57,25 +57,28 @@
{% endmacro tags %}
{% macro page_header(title) %}
<h1 class="title-container">
<h2 class="title-container">
{{ title }}
</h1>
{% endmacro content %}
</h2>
{% endmacro page_header %}
{% macro page_desc(desc) %}
{% macro page_desc(desc, page) %}
<div id="banner-container-home">
<div id="home-banner-text">
<h3>
{{ desc.title }}
</h3>
<p id="banner-home-subtitle">{{ desc.text }}</p>
<section id="banner-home-subtitle">
{{ page.content | safe }}
</section>
</div>
<div class="image-container-home">
<img alt="the owner" class="banner-home-img" src="{{ desc.img }}" />
<img alt="the owner" class="banner-home-img" src="{{ desc.img }}" />
</div>
</div>
{% endmacro content %}
{% endmacro page_desc %}
{% macro content(page) %}
<main>