vegan-prestwich/_includes/head.html

26 lines
987 B
HTML
Raw Normal View History

2022-11-25 00:54:51 +00:00
<head>
2024-11-30 14:58:14 +00:00
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<meta name="robots" content="max-image-preview:large" />
<meta name="generator" content="Eleventy" />
{% capture styles %} {% include "../_site/style/style.css" %} {% endcapture %}
2022-11-27 23:45:57 +00:00
<style>
{{ styles }}
</style>
2022-11-25 00:54:51 +00:00
<title>
2024-11-30 14:58:14 +00:00
{%- if metaTitle %} {{ metaTitle | escape }} {%- elsif name %} {{ name |
escape }}, Prestwich {%- elsif title %} {{ title | escape }}, Prestwich {%-
else %} {{ site.title | escape }} {%- endif %}
2022-11-25 00:54:51 +00:00
</title>
2024-11-30 14:58:14 +00:00
<meta
name="description"
content="{{ excerpt | default: site.description | strip_html | truncate: 160 | escape }}"
/>
<link
rel="icon"
href="data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'><text y='.9em' font-size='90'>💚</text></svg>"
/>
<link rel="canonical" href="{{ siteUrl }}{{ page.url }}" />
2022-11-25 00:54:51 +00:00
</head>