{% macro title_or_last(component, offset=2) %} {% set length = component.components | length %} {% set name = component.components | slice(end=length - offset) | last %} {{ component.title | default(value=name) }} {% endmacro title_or_last %} {% macro format_date(date) %} {% set date_format = config.extra.date_format | default(value="%a %b %e, %Y") %} {{ date | date(format=date_format) }} {% endmacro format_date %} {% macro bottom_menu() %}

{% if config.extra.sam_menu and config.extra.sam_bottom_menu %} {% for link in config.extra.sam_menu %} {{ link.text }} · {% endfor %} {% elif config.extra.sam_bottom_menu %} {% set index = get_section(path="_index.md") %} {% for current in index.subsections %} {% set current = get_section(path=current) %} {{ macros::title_or_last(component=current) }} · {% endfor %} {% endif %} {{ config.extra.home | default(value="home") }}

{% endmacro bottom_menu %} {% macro footer() %} {% if config.extra.sam_footer %} {% endif %} {% endmacro footer %}