38 lines
1.4 KiB
HTML
38 lines
1.4 KiB
HTML
<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">
|
|
|
|
<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}}"/>
|
|
|
|
{% if page.collection == "posts" %}
|
|
<meta property="og:type"
|
|
content="article"/>
|
|
<meta property="article:published_time"
|
|
content="{{ page.date | date_to_xmlschema }}"/>
|
|
<meta property="article:section"
|
|
content="Blog"/>
|
|
{% for tag in page.tags %}
|
|
<meta property="article:tag" content="{{ tag }}"/>
|
|
{% endfor %}
|
|
{% if page.image %}
|
|
<meta property="og:image"
|
|
content="{{site.url}}/images/{{page.path | split: '/' | last | split: '.' | first }}/{{page.image}}"/>
|
|
{% endif %}
|
|
{% else %}
|
|
<meta property="og:type"
|
|
content="website"/>
|
|
{% endif %}
|
|
<!--{{page.collection}}-->
|
|
|
|
<link rel="stylesheet" href="/fa/css/fontawesome.min.css">
|
|
<link rel="stylesheet" href="/fa/css/brands.min.css">
|
|
<link rel="stylesheet" href="/fa/css/solid.min.css">
|
|
|
|
<link rel="stylesheet" href="/css/fnoots.css"/>
|
|
<link rel="stylesheet" href="/css/site.css"/>
|
|
<link rel="stylesheet" href="/css/sidebar.css"/>
|
|
</head>
|