vegan-prestwich/_includes/head.html

24 lines
931 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" />
2025-01-08 22:34:47 +00:00
<link rel="stylesheet" href="/style/style.css">
2022-11-25 00:54:51 +00:00
<title>
2025-01-08 22:56:33 +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>
2025-01-08 22:56:33 +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>" />
2024-11-30 14:58:14 +00:00
<link rel="canonical" href="{{ siteUrl }}{{ page.url }}" />
2022-11-25 00:54:51 +00:00
</head>