2022-08-31 23:20:59 +02: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.0">
|
2023-04-03 23:33:25 +02:00
|
|
|
<link rel="alternate" type="application/rss+xml" href="https://tollyx.net/atom.xml" title="tollyx.net">
|
|
|
|
{% if tag -%}
|
|
|
|
<link rel="alternate" type="application/rss+xml" href="https://tollyx.net/tags/{{ tag.slug }}/atom.xml" title="tollyx.net - #{{ tag.slug }}">
|
|
|
|
{%- endif %}
|
2022-09-05 00:02:58 +02:00
|
|
|
<link rel="stylesheet" href="/static/site.css">
|
2023-04-03 23:33:25 +02:00
|
|
|
<link rel="icon" type="image/png" href="/static/avatar.png" />
|
|
|
|
<meta property="og:type" content="website">
|
|
|
|
<meta property="og:site_name" content="tollyx.net" />
|
|
|
|
{% if page -%}
|
|
|
|
<meta property="og:title" content="{{ page.title }} - tollyx.net" />
|
|
|
|
{%- elif tag -%}
|
|
|
|
<meta property="og:title" content="#{{ tag.slug }} - tollyx.net" />
|
|
|
|
{%- else -%}
|
|
|
|
<meta property="og:title" content="tollyx.net" />
|
|
|
|
{%- endif %}
|
|
|
|
<meta property="og:image" content="https://tollyx.net/avatar.png" />
|
|
|
|
<meta name="twitter:card" content="summary" />
|
|
|
|
<meta name="twitter:site" content="@tollyx" />
|
|
|
|
<meta name="twitter:creator" content="@tollyx" />
|
|
|
|
<meta name="twitter:dnt" content="on">
|
2023-03-25 21:38:16 +01:00
|
|
|
{% if page.title -%}
|
|
|
|
<title>{{ page.title }} | tollyx.net</title>
|
2023-04-03 23:33:25 +02:00
|
|
|
{%- else -%}
|
2023-03-25 16:14:53 +01:00
|
|
|
<title>tollyx.net</title>
|
2023-04-03 23:33:25 +02:00
|
|
|
{%- endif %}
|
2022-08-31 23:20:59 +02:00
|
|
|
</head>
|