{% macro render_updated(date) %} {% include ".icons/material/clock-edit-outline.svg" %} {{ date }} {% endmacro %} {% macro render_created(date) %} {% include ".icons/material/clock-plus-outline.svg" %} {{ date }} {% endmacro %} {% macro render_authors(authors) %} {% set git_authors = config.plugins.get("git-authors") %} {% if authors | length == 1 %} {% include ".icons/material/account.svg" %} {% else %} {% include ".icons/material/account-group.svg" %} {% endif %} {% endmacro %} {% if page.meta %} {% if page.meta.git_revision_date_localized %} {% set updated = page.meta.git_revision_date_localized %} {% elif page.meta.revision_date %} {% set updated = page.meta.revision_date %} {% endif %} {% if page.meta.git_creation_date_localized %} {% set created = page.meta.git_creation_date_localized %} {% endif %} {% endif %} {% if updated or created or git_info %} {% endif %}