drewcassidy.me/_includes/head.html

51 lines
1.8 KiB
HTML
Raw Normal View History

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"
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
{% if page.collection == "posts" %}
2019-05-05 06:59:32 +00:00
<meta property="og:type"
content="article"/>
2019-05-05 07:03:03 +00:00
<meta property="article:published_time"
2019-05-05 06:59:32 +00:00
content="{{ page.date | date_to_xmlschema }}"/>
2019-05-05 07:03:03 +00:00
<meta property="article:section"
2019-05-05 06:59:32 +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 07:03:03 +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:46:01 +00:00
{% if page.image %}
2019-05-05 06:59:32 +00:00
<meta property="og:image"
content="{{site.url}}/images/{{page.path | split: '/' | last | split: '.' | first }}/{{page.image}}"/>
2019-05-05 06:46:01 +00:00
{% endif %}
2019-05-05 07:16:46 +00:00
{% if page.description %}
<meta
property="og:description"
content="{{page.description}}"
/>
{% else %}
<meta
property="og:description"
content="{{page.content | markdownify | strip_html | truncate: 100}}"
/>
{% endif %}
2019-05-05 06:35:01 +00:00
{% else %}
2019-05-05 06:59:32 +00:00
<meta property="og:type"
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">
<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>