Adiciona regiões content_above e content_below ao tema do microsite

Regiões posicionadas de forma análoga ao tema Olivero: content_above
dentro do <main> antes do conteúdo principal, e content_below após o
bloco main/sidebar.

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-22 08:32:28 -03:00
parent 18a7aa81cb
commit a500d9ec09
2 changed files with 9 additions and 0 deletions

View File

@@ -15,7 +15,9 @@ regions:
highlighted: Highlighted
tabs: Tabs
messages: Messages
content_above: Content Above
content: Content
content_below: Content Below
sidebar: Sidebar
social: Social
footer: Footer

View File

@@ -80,6 +80,7 @@
<div class="microsite-main-wrapper{% if page.sidebar %} microsite-main-wrapper--has-sidebar{% endif %}">
<main id="main-content" class="microsite-main" role="main">
{{ page.content_above }}
{{ page.content }}
</main>
@@ -90,6 +91,12 @@
{% endif %}
</div>
{% if page.content_below %}
<div class="microsite-content-below">
{{ page.content_below }}
</div>
{% endif %}
{% if page.footer %}
<footer class="microsite-footer">
{{ page.footer }}