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:35:01 +00:00
|
|
|
<meta name="og:title"
|
|
|
|
contents="{% if page.title %} {{ page.title }} {% else %} Andrew Cassidy's Website {% endif %}">
|
|
|
|
<meta name="og:url" contents="{{site.url}}{{page.url}}">
|
|
|
|
|
|
|
|
{% if page.collection == "posts" %}
|
|
|
|
<meta name="og:type"
|
|
|
|
contents="article">
|
|
|
|
<meta name="og:article:published_time"
|
|
|
|
contents="{{ page.date | date_to_xmlschema }}">
|
|
|
|
<meta name="og:article:section"
|
|
|
|
contents="Blog">
|
|
|
|
{% for tag in page.tags %}
|
|
|
|
<meta name="og:article:tag" contents="{{ tag }}">
|
|
|
|
{% endfor %}
|
|
|
|
{% else %}
|
|
|
|
<meta name="og:type"
|
|
|
|
contents="website">
|
|
|
|
{% endif %}
|
|
|
|
<!--{{page.collection}}-->
|
|
|
|
|
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>
|