2017-12-24 23:04:19 +00:00
|
|
|
<head>
|
|
|
|
<meta charset=utf-8 />
|
|
|
|
<title> {% if page.title %} {{ page.title }} | {% endif %} Andrew Cassidy</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2017-11-15 06:49:46 +00:00
|
|
|
|
2019-05-05 06:59:32 +00:00
|
|
|
<meta property="og:title"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="{% if page.title %} {{ page.title }} {% else %} Andrew Cassidy's Website {% endif %}"/>
|
|
|
|
<meta property="og:url" content="{{site.url}}{{page.url}}"/>
|
2019-05-05 06:35:01 +00:00
|
|
|
|
2019-05-05 07:20:46 +00:00
|
|
|
{% if page.image %}
|
|
|
|
<meta property="og:image"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="{{site.url}}/images/{{page.path | split: '/' | last | split: '.' | first }}/{{page.image}}"/>
|
2019-05-05 07:20:46 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-05-05 07:21:27 +00:00
|
|
|
{% if page.description %}
|
|
|
|
<meta
|
|
|
|
property="og:description"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="{{page.description}}"
|
|
|
|
/>
|
2019-05-05 07:21:27 +00:00
|
|
|
{% else %}
|
|
|
|
<meta
|
|
|
|
property="og:description"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="{{page.content | markdownify | strip_html | truncate: 100}}"
|
|
|
|
/>
|
2019-05-05 07:21:27 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-05-05 06:35:01 +00:00
|
|
|
{% if page.collection == "posts" %}
|
2019-05-05 06:59:32 +00:00
|
|
|
<meta property="og:type"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="article"/>
|
2019-05-05 07:03:03 +00:00
|
|
|
<meta property="article:published_time"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="{{ page.date | date_to_xmlschema }}"/>
|
2019-05-05 07:03:03 +00:00
|
|
|
<meta property="article:section"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="Blog"/>
|
2019-05-05 07:16:46 +00:00
|
|
|
|
2019-05-05 06:35:01 +00:00
|
|
|
{% for tag in page.tags %}
|
2019-05-05 17:44:07 +00:00
|
|
|
<meta property="article:tag" content="{{ tag }}"/>
|
2019-05-05 06:35:01 +00:00
|
|
|
{% endfor %}
|
2019-05-05 07:16:46 +00:00
|
|
|
|
2019-05-05 06:35:01 +00:00
|
|
|
{% else %}
|
2019-05-05 06:59:32 +00:00
|
|
|
<meta property="og:type"
|
2019-05-05 17:44:07 +00:00
|
|
|
content="website"/>
|
2019-05-05 06:35:01 +00:00
|
|
|
{% endif %}
|
|
|
|
|
2019-05-05 01:31:51 +00:00
|
|
|
<link rel="stylesheet" href="/fa/css/fontawesome.min.css">
|
2019-05-05 01:22:11 +00:00
|
|
|
<link rel="stylesheet" href="/fa/css/brands.min.css">
|
2019-05-05 03:33:53 +00:00
|
|
|
<link rel="stylesheet" href="/fa/css/solid.min.css">
|
2019-05-05 01:22:11 +00:00
|
|
|
|
2017-12-24 23:04:19 +00:00
|
|
|
<link rel="stylesheet" href="/css/fnoots.css"/>
|
2019-05-05 04:30:18 +00:00
|
|
|
<link rel="stylesheet" href="/css/site.css"/>
|
2017-12-24 23:04:19 +00:00
|
|
|
<link rel="stylesheet" href="/css/sidebar.css"/>
|
|
|
|
</head>
|