Skip to content
Snippets Groups Projects
Commit 6a6d5768 authored by Sam Summy's avatar Sam Summy
Browse files

Breaking change: Rename Page header component to Page navigation

parent a7711537
No related branches found
No related tags found
No related merge requests found
......@@ -16,7 +16,7 @@ A template for constructing the page layout.
## Template Structure
- **Page Wrapper**: A `<div>` element serves as the main container for the page, with customizable attributes and classes.
- **Header Block**: A dedicated block for the page header, which can be customized or replaced as needed.
- **Navigation Block**: A dedicated block for the page header, which can be customized or replaced as needed.
- **Content Block**: The main content area of the page, designed to be flexible for various types of content layouts.
- **Footer Block**: A separate block for the page footer, allowing for consistent footer content across the site.
......
......@@ -20,9 +20,9 @@ slots:
navigation:
title: Navigation
description: 'The primary navigation of the site, including main and secondary menus.'
page_header:
title: Page Header
description: 'The header section of the page.'
page_navigation:
title: Page Navigation
description: 'The navigation section of the page.'
page_content:
title: Page Content
description: 'The main content area of the page.'
......
......@@ -12,8 +12,8 @@
%}
<div {{ page_attributes.addClass(page_classes) }}>
{% block page_header %}
{% include 'radix:page-header' %}
{% block page_navigation %}
{% include 'radix:page-navigation' %}
{% endblock %}
{% block page_content %}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment