2022-11-25 00:54:51 +00:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2022-11-28 00:49:39 +00:00
|
|
|
<meta name="robots" content="max-image-preview:large">
|
2022-11-27 23:45:57 +00:00
|
|
|
{% capture styles %}
|
|
|
|
{% include "../_site/style/style.css" %}
|
|
|
|
{% endcapture %}
|
|
|
|
<style>
|
|
|
|
{{ styles }}
|
|
|
|
</style>
|
2022-11-25 00:54:51 +00:00
|
|
|
<title>
|
2022-11-28 00:49:39 +00:00
|
|
|
{%- if metaTitle %}
|
2022-11-27 23:45:57 +00:00
|
|
|
{{ metaTitle | escape }}
|
2022-11-28 00:49:39 +00:00
|
|
|
{%- elsif name %}
|
2022-11-28 00:24:52 +00:00
|
|
|
{{ name | escape }}, Prestwich
|
2022-11-28 00:49:39 +00:00
|
|
|
{%- elsif title %}
|
|
|
|
{{ title | escape }}, Prestwich
|
|
|
|
{%- else %}
|
2022-11-25 00:54:51 +00:00
|
|
|
{{ site.title | escape }}
|
2022-11-28 00:49:39 +00:00
|
|
|
{%- endif %}
|
2022-11-25 00:54:51 +00:00
|
|
|
</title>
|
2022-11-27 23:45:57 +00:00
|
|
|
<meta name="description" content="{{ excerpt | default: site.description | strip_html | truncate: 160 | escape }}">
|
2022-11-25 00:54:51 +00:00
|
|
|
</head>
|