2019-05-05 21:13:40 +00:00
|
|
|
{% capture title %}
|
|
|
|
{% if page.title %}
|
|
|
|
{{ page.title }}
|
|
|
|
{% else %}
|
|
|
|
Andrew Cassidy
|
|
|
|
{% endif %}
|
|
|
|
{% endcapture %}
|
2019-05-05 17:56:27 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
{% capture description %}
|
|
|
|
{% if page.description%}
|
|
|
|
{{ page.description}}
|
|
|
|
{% else %}
|
|
|
|
{{page.content | markdownify | strip_html | truncate: 100}}
|
|
|
|
{% endif %}
|
|
|
|
{% endcapture %}
|
2017-11-15 06:49:46 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
{% capture image %}
|
|
|
|
{{site.url}}/images/{{page.path | split: '/' | last | split: '.' | first }}/{{page.image}}
|
|
|
|
{% endcapture %}
|
2019-05-05 17:56:27 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
<title>{{title}}</title>
|
2019-05-05 07:20:46 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
<meta charset=utf-8 />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
2019-05-05 17:56:27 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
<!-- Twitter cards -->
|
|
|
|
<meta name="twitter:card" content="summary"/>
|
|
|
|
<meta name="twitter:site" conten="@AndrewNCassidy"/>
|
|
|
|
<meta name="twitter:title" content="{{title}}"/>
|
|
|
|
<meta name="twitter:description" content="{{description}}"/>
|
2019-05-05 07:21:27 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
<!-- Opengraph -->
|
|
|
|
<meta property="og:url" content="{{site.url}}{{page.url}}"/>
|
|
|
|
<meta property="og:title" content="{{title}}"/>
|
2019-05-05 23:29:53 +00:00
|
|
|
<meta property="og:description" content="{{description}}"/>
|
2019-05-05 07:16:46 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
{% if page.image %}
|
2019-05-05 23:29:53 +00:00
|
|
|
<meta name="twitter:image" content="{{image}}"/>
|
2019-05-05 21:13:40 +00:00
|
|
|
<meta property="og:image" content="{{image}}"/>
|
|
|
|
{% endif %}
|
2019-05-05 06:35:01 +00:00
|
|
|
|
2019-05-05 21:13:40 +00:00
|
|
|
<link rel="stylesheet" href="/css/fnoots.css"/>
|
|
|
|
<link rel="stylesheet" href="/css/site.css"/>
|
2020-06-24 22:50:06 +00:00
|
|
|
<link rel="stylesheet" href="/css/code.css"/>
|
2019-05-05 21:13:40 +00:00
|
|
|
<link rel="stylesheet" href="/css/sidebar.css"/>
|