2
0
MasterPassword/_includes/head.html

15 lines
834 B
HTML
Raw Normal View History

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