{%- extends "theming/base_component.html" -%} {%- block overview -%}

The footer component creates page footers that provide consistent information and navigation elements at the bottom of pages. Footers typically contain site information, legal notices, secondary navigation, contact information, and other elements that users might need but don't require prominent placement.

While footer component itself often can be used to render the whole footer, often in contains two nested components: footer_main and footer_secondary.

The footer_main component is used for the main part of the footer, which typically includes important information such as copyright notices, contact details, and key links. This section is designed to be the primary area of the footer where users can find essential information about the site or organization.

The footer_secondary component is used for the secondary part of the footer, which may include additional navigation links, social media icons, attribution, or other supplementary information. This section is designed to provide extra resources or links that users might find useful but are not as critical as the information in the main footer section.

{%- endblock %} {%- block parameters -%}

Footer

{{ super() }}

Main footer

{{ parameters_table("footer_secondary") }}

Secondary footer

{{ parameters_table("footer_main") }} {%- endblock %}