1
0
Fork 0
blog.kempkens.io/_includes/head.html

53 lines
2.2 KiB
HTML
Raw Normal View History

2014-11-30 20:47:18 +00:00
<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 }} &middot; {{ site.tagline }}
{% else %}
{{ page.title }} &middot; {{ site.title }}
{% endif %}
</title>
<!-- CSS -->
2014-12-28 20:05:32 +00:00
<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 }}">
2014-12-07 19:02:43 +00:00
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface">
2014-11-30 20:47:18 +00:00
<!-- Icons -->
2014-12-28 20:05:32 +00:00
<link rel="shortcut icon" href="{{ "public/favicon.ico" | prepend: site.baseurl }}">
2014-11-30 20:47:18 +00:00
<!-- RSS -->
2014-12-28 20:05:32 +00:00
<link rel="alternate" type="application/atom+xml" title="{{ site.title }} Feed" href="{{ "/feed.xml" | prepend: site.url }}">
2015-01-01 19:51:56 +00:00
<link rel="alternate" type="application/atom+xml" title="{{ site.title }} Feed (with links)" href="{{ "/feed-with-links.xml" | prepend: site.url }}">
2014-12-26 21:20:14 +00:00
<!-- humans.txt -->
2015-01-06 21:28:48 +00:00
<link rel="author" href="{{ "humans.txt" | prepend: site.baseurl }}">
2014-12-26 21:20:14 +00:00
{% 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 %}
2014-11-30 20:47:18 +00:00
</head>