Skip to content

Instantly share code, notes, and snippets.

@piotrpog
Last active September 30, 2019 00:05
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save piotrpog/fec23b38be38cc4b5c8b979d3a6fdb28 to your computer and use it in GitHub Desktop.
Save piotrpog/fec23b38be38cc4b5c8b979d3a6fdb28 to your computer and use it in GitHub Desktop.
{% if craft.app.urlManager.matchedElement and craft.app.urlManager.matchedElement.uri == '__home__' %}
{% set seoTitle = craft.app.urlManager.matchedElement.title %}
{% elseif craft.app.urlManager.matchedElement %}
{% set seoTitle = craft.app.urlManager.matchedElement.title ~ ' - ' ~ siteName %}
{% else %}
{% set seoTitle = siteName %}
{% endif %}
<title>{{ seoTitle }}</title>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment