51 lines
2 KiB
HTML
51 lines
2 KiB
HTML
<head>
|
|
<link href="http://gmpg.org/xfn/11" rel="profile">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
<meta http-equiv="content-type" content="text/html; charset=utf-8">
|
|
|
|
<!-- Enable responsiveness on mobile devices-->
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1">
|
|
|
|
<title>
|
|
{% if page.title == "Home" %}
|
|
{{ site.title }} · {{ site.tagline }}
|
|
{% else %}
|
|
{{ page.title }} · {{ site.title }}
|
|
{% endif %}
|
|
</title>
|
|
|
|
<!-- CSS -->
|
|
<link rel="stylesheet" href="{{ "public/css/poole.css" | prepend: site.baseurl }}">
|
|
<link rel="stylesheet" href="{{ "public/css/syntax.css" | prepend: site.baseurl }}">
|
|
<link rel="stylesheet" href="{{ "public/css/hyde.css" | prepend: site.baseurl }}">
|
|
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
|
|
|
|
<!-- Icons -->
|
|
<link rel="shortcut icon" href="{{ "public/favicon.ico" | prepend: site.baseurl }}">
|
|
|
|
<!-- RSS -->
|
|
<link rel="alternate" type="application/atom+xml" title="{{ site.title }} Feed" href="{{ "/feed.xml" | prepend: site.url }}">
|
|
|
|
<!-- humans.txt -->
|
|
<link rel="author" href="humans.txt">
|
|
|
|
{% if page.category == "posts" %}
|
|
<!-- Twitter -->
|
|
<meta name="twitter:card" content="summary">
|
|
<meta name="twitter:site" content="@nifoc_">
|
|
<meta name="twitter:title" content="{{ page.title }}">
|
|
<meta name="twitter:description" content="{{ page.description }}">
|
|
<meta name="twitter:url" content="{{ site.url }}{{ page.url }}">
|
|
|
|
<!-- Facebook -->
|
|
<meta property="og:type" content="website">
|
|
<meta property="og:site_name" content="{{ site.title }}">
|
|
<meta property="og:title" content="{{ page.title }}">
|
|
<meta property="og:description" content="{{ page.description }}">
|
|
<meta property="og:url" content="{{ site.url }}{{ page.url }}">
|
|
|
|
<!-- Schema.org -->
|
|
<meta itemprop="name" content="{{ page.title }}">
|
|
<meta itemprop="description" content="{{ page.description }}">
|
|
{% endif %}
|
|
</head>
|