blob: 8a962e30cddfb74d4aef7e515564ed84184ccb59 (
plain) (
tree)
|
|
<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: 50 }}"/>
<meta property="og:image" content="https://53hor.net/public/images/logo.png"/>
<meta property="og:url" content="{{ page.slug }}"/>
<meta property="og:site_name" content="53hornet"/>
<meta property="og:type" content="article"/>
{% if page.published_date %}
<meta property="og:article:published_time" content="{{ page.published_date }}"/>
{% endif %}
<meta property="og:article:author" content="Adam Carpenter"/>
<meta property="og:article:section" content="{{ page.categories }}"/>
{% if page.tags %}
{% for tag in page.tags %}
<meta property="og:article:tag" content="{{ tag }}"/>
{% endfor %}
{% endif %}
|