{% extends "base.html" %}
{#
Open Graph and Twitter card tags. Material only emits these through its social
plugin, which drags in image rendering dependencies; a static card image is
enough here. The description falls back to the site one when a page has none.
#}
{% block extrahead %}
{% set title = config.site_name %}
{% if page and page.title and not page.is_homepage %}
{% set title = page.title ~ " - " ~ config.site_name %}
{% endif %}
{% if page and page.meta and page.meta.description %}
{% elif config.site_description %}
{% endif %}
{% if page and page.canonical_url %}
{% endif %}
{% endblock %}