Fix meta title on podcast episode pages
This commit is contained in:
parent
cc13e29367
commit
73215b3fcd
|
@ -25,6 +25,7 @@
|
|||
<meta name="description" content="{{ site.meta.description }}" />
|
||||
{% endif %}
|
||||
|
||||
{% block head_title %}
|
||||
{% if page.meta.title %}
|
||||
<title>{{ page.meta.title }}</title>
|
||||
<meta property="og:title" content="{{ page.meta.title }}" />
|
||||
|
@ -34,6 +35,7 @@
|
|||
<meta property="og:title" content="{{ page.title }} | {{ site.name }}" />
|
||||
<meta property="twitter:title" content="{{ page.title }} | {{ site.name }}" />
|
||||
{% endif %}
|
||||
{% endblock %}
|
||||
</head>
|
||||
<body>
|
||||
{% block body %}{% endblock %}
|
||||
|
|
|
@ -8,6 +8,12 @@
|
|||
with {{ page.guests.0 }}
|
||||
{% endblock %}
|
||||
|
||||
{% block head_title %}
|
||||
<title>{{ block('page_title') }} | Beyond Blocks podcast | {{ site.name }}</title>
|
||||
<meta property="og:title" content="{{ block('page_title') }} | Beyond Blocks podcast | {{ site.name }}" />
|
||||
<meta property="twitter:title" content="{{ block('page_title') }} | Beyond Blocks podcast | {{ site.name }}" />
|
||||
{% endblock %}
|
||||
|
||||
{% block content_wrapper %}
|
||||
{% if page.transistor.id %}
|
||||
<div>
|
||||
|
|
Loading…
Reference in a new issue