15 lines
831 B
HTML
15 lines
831 B
HTML
<head>
|
|
<meta charset="utf-8">
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
<title>{{ site.title | escape }}: {{ page.title | escape }}</title>
|
|
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
|
<meta name="apple-itunes-app" content="app-id=510296984" />
|
|
|
|
<link rel="stylesheet" href="{{ site.baseurl | append: '/css/main.css' }}">
|
|
<link rel="canonical" href="{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}">
|
|
<link rel="shortcut icon" href="{% link img/favicon.png %}" type="image/x-png" />
|
|
<link rel="icon" href="{% link img/favicon.png %}" type="image/x-png" />
|
|
</head>
|