|
1 | 1 | <head> |
| 2 | + <!-- Common metatags --> |
2 | 3 | <meta charset="utf-8"> |
3 | | - <meta http-equiv="X-UA-Compatible" content="IE=edge"> |
| 4 | + <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> |
4 | 5 | <meta name="viewport" content="width=device-width, initial-scale=1"> |
| 6 | + <meta name="robots" content="index, follow"> |
| 7 | + |
| 8 | + <link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png"> |
| 9 | + <link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png"> |
| 10 | + <link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png"> |
| 11 | + <link rel="manifest" href="/manifest.json"> |
| 12 | + <link rel="mask-icon" href="/safari-pinned-tab.svg" color="#bf921e"> |
| 13 | + <meta name="apple-mobile-web-app-title" content="{{ site.app_name }}"> |
| 14 | + <meta name="application-name" content="{{ site.app_name }}"> |
| 15 | + <meta name="theme-color" content="{{ site.meta.theme_color }}"> |
5 | 16 |
|
6 | 17 | {% capture page_title %}{% if page.title %}{{ " · pv8.io" | prepend: page.title }}{% else %}{{ site.title }}{% endif %}{% endcapture %} |
7 | 18 | {% capture page_description %}{% if page.excerpt %}{{ page.excerpt | markdownify | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.meta.description }}{% endif %}{% endcapture %} |
8 | 19 | {% capture url %}{{ page.url | replace:'index.html','' | prepend: site.baseurl | prepend: site.url }}{% endcapture %} |
9 | 20 | <title>{{ page_title }}</title> |
| 21 | + |
| 22 | + <meta name="author" content="{{ site.profile.name }}"> |
| 23 | + <meta name="image" content="{{ site.default_image }}"> |
10 | 24 | <meta name="description" content="{{ page_description }}"> |
11 | 25 | <meta name="keywords" content="{{ site.meta.keywords }}"> |
| 26 | + <meta name="MobileOptimized" content="320" /> |
| 27 | + <meta name="HandheldFriendly" content="True" /> |
12 | 28 |
|
13 | 29 | <!-- Twitter Cards metatags --> |
14 | 30 | <meta name="twitter:card" content="summary" /> |
|
24 | 40 | <meta name="twitter:url" content="{{ url }}" /> |
25 | 41 |
|
26 | 42 | <!-- Open Graph metatags --> |
| 43 | + <meta property="og:locale" content="en_US"> |
27 | 44 | <meta property="og:site_name" content="{{ site.title }}" /> |
28 | 45 | <meta property="og:title" content="{{ page_title }}" /> |
29 | 46 | <meta property="og:description" content="{{ page_description }}" /> |
|
46 | 63 | <meta property="og:image" content="{{ site.default_image }}" /> |
47 | 64 | {% endif %} |
48 | 65 |
|
| 66 | + <!-- schema.org metatags --> |
| 67 | + <meta itemprop="name" content="{{ site.profile.name }}"> |
| 68 | + <meta itemprop="description" content="{{ site.meta.description }}"> |
| 69 | + <meta itemprop="image" content="{{ site.default_image }}"> |
| 70 | + |
49 | 71 | <link rel="stylesheet" href="{{ "/css/main.css" | prepend: site.baseurl }}"> |
50 | 72 | <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css"> |
51 | 73 | <link rel="canonical" href="{{ url }}"> |
|
0 commit comments