{{# @name SEO @desc The SEO partial rendered in the of your page. You don't need to use this file if you plan on using an addon for SEO. #}} {{# Page title #}} {{ yield:seo_title }} {{ seo_title ? seo_title : title }} {{ seo:title_separator ? seo:title_separator : " | " }} {{ seo:change_page_title where="collection:{collection}" }} {{ if what_to_add == 'collection_title' }} {{ collection:title }} {{ elseif what_to_add == 'custom_text' }} {{ custom_text }} {{ /if }} {{ seo:title_separator ? seo:title_separator : " | " }} {{ /seo:change_page_title }} {{ seo:site_name ? seo:site_name : config:app:name }} {{# Page description #}} {{ if seo_description }} {{ elseif seo:collection_defaults }} {{ /if }} {{# No index and no follow #}} {{ if (environment == 'local' && !seo:noindex_local) or (environment == 'staging' && !seo:noindex_staging) or (environment == 'production' && !seo:noindex_production) }} {{ if seo_noindex & seo_nofollow }} {{ elseif seo_nofollow }} {{ elseif seo_noindex }} {{ /if }} {{ else }} {{ /if }} {{# hreflang tags #}} {{ if seo:hreflang_auto }} {{ if not seo_noindex and seo_canonical_type == 'entry' and current_full_url === permalink }} {{ locales all="false" }} {{ /locales }} {{ /if }} {{ /if }} {{# Canonical URL #}} {{ if not seo_noindex }} {{ if seo_canonical_type == 'current' }} {{ elseif seo_canonical_type == 'external' }} {{ elseif seo_canonical_type == 'entry' }} {{ /if }} {{ /if }} {{# Auto add pagination link's when using resources/views/components/_pagination.antlers.html. #}} {{ yield:pagination }} {{# Knowledge graph JSON-ld #}} {{ if seo:json_ld_type && seo:json_ld_type != 'none' }} {{ /if }} {{ if schema_jsonld }} {{ /if }} {{# Breadcrumbs JSON-ld #}} {{ if seo:breadcrumbs && segment_1 }} {{ /if }} {{# Open Graph #}} {{ if og_title }} {{ else }} {{ /if }} {{ if og_description }} {{ elseif seo_description }} {{ elseif seo:collection_defaults }} {{ /if }} {{ if og_image }} {{ elseif seo:og_image }} {{ /if }} {{# Twitter #}} {{ if twitter_image or seo:twitter_image }} {{ if og_title }} {{ else }} {{ /if }} {{ if og_description }} {{ elseif seo_description }} {{ elseif seo:collection_defaults }} {{ /if }} {{ if twitter_image }} {{ asset :url="twitter_image" }} {{ if alt }} {{ /if }} {{ /asset }} {{ elseif seo:twitter_image }} {{ asset :url="seo:twitter_image" }} {{ if alt }} {{ /if }} {{ /asset }} {{ /if }} {{ /if }} {{# Trackers #}} {{ if (environment == 'local' && !!seo:trackers_local) or (environment == 'staging' && !!seo:trackers_staging) or (environment == 'production' && !!seo:trackers_production) }} {{ if seo:tracker_type == 'gtm' }} {{ elseif seo:tracker_type == 'gtag' }} {{ /if }} {{ if seo:use_cookie_banner }} {{ /if }} {{# Yield this section in all your layouts after opening the #}} {{ section:seo_body }} {{ if seo:tracker_type == 'gtm' }} {{ /if }} {{ if seo:use_cookie_banner }} {{ partial:components/cookie_banner }} {{ /if }} {{ /section:seo_body }} {{ if seo:use_google_site_verification }} {{ /if }} {{ if seo:use_fathom }} {{ if seo:fathom_use_custom_domain }} {{ else }} {{ /if }} {{ /if }} {{ if seo:use_cloudflare_web_analytics }} {{ /if }} {{ /if }}