summaryrefslogtreecommitdiff
path: root/_includes/head.liquid
blob: 4f5313c3a63880729738815ea4bbb6c52c5c468b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="/public/css/styles.css">
<title>{{ page.title }}</title>

<!-- Open Graph Protocol -->
<meta property="og:title" content="{{ page.title }}"/>
<meta property="og:description" content="{{ page.excerpt | truncatewords: 20 }}"/>
<meta property="og:image" content="https://53hor.net/public/images/logo.png"/>
<meta property="og:url" content="{{ page.permalink }}"/>
<meta property="og:site_name" content="53hornet"/>
<meta property="og:type" content="article"/>
<meta property="article:published_time" content="{{ page.published_date }}"/>
<meta property="article:author" content="Adam Carpenter"/>
<meta property="article:section" content="{{ page.category }}"/>

{% for tag in page.tags %}
    <meta property="article:tag" content="{{ tag }}"/>
{% endfor %}