diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-03 02:49:18 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-03 02:49:18 +0300 |
commit | 89fcf8c78fedfe01b4ec473a7ee489cdc7410f72 (patch) | |
tree | 6b98f03fcb67de49f0caf030d12a2bdc2c5124a8 /_includes/head.html | |
parent | 9c26bbb254236f5c8aea5d0125514a007d9b789f (diff) | |
download | popov.link-89fcf8c78fedfe01b4ec473a7ee489cdc7410f72.tar.xz popov.link-89fcf8c78fedfe01b4ec473a7ee489cdc7410f72.zip |
The header template was updated
Signed-off-by: Valentin Popov <valentineus@gmail.com>
Diffstat (limited to '_includes/head.html')
-rw-r--r-- | _includes/head.html | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/_includes/head.html b/_includes/head.html index b4db74a..ca46abc 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,6 +1,10 @@ <head> - <meta charset="UTF-8"> - <meta name="viewport" content="width=device-width, initial-scale=1.0"> + <!-- Meta tags --> + <link href="http://gmpg.org/xfn/11" rel="profile" /> + <link rel="canonical" href="{{ site.url | absolute_url }}" /> + <meta http-equiv="content-type" content="text/html; charset=utf-8" /> + <meta http-equiv="X-UA-Compatible" content="IE=edge" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> <title> {% if page.title == "Home" %} @@ -11,11 +15,16 @@ </title> <!-- CSS --> - <link rel="stylesheet" href="{{ site.baseurl }}/styles.css"> - <link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Libre+Baskerville:400,400i,700"> + <link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans:400,400italic,700|Abril+Fatface" /> + <link rel="stylesheet" href="{{ "/assets/css/hyde.css" | relative_url }}" /> + <link rel="stylesheet" href="{{ "/assets/css/poole.css" | relative_url }}" /> + <link rel="stylesheet" href="{{ "/assets/css/syntax.css" | relative_url }}" /> <!-- Favicon --> - <link rel="icon" type="image/png" sizes="32x32" href="{{ site.baseurl }}/assets/favicon-32x32.png"> - <link rel="icon" type="image/png" sizes="16x16" href="{{ site.baseurl }}/assets/favicon-16x16.png"> - <link rel="apple-touch-icon" sizes="180x180" href="{{ site.baseurl }}/assets/apple-touch-icon.png"> + <link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/apple-touch-icon.png" | relative_url }}" /> + <link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicon-16x16.png" | relative_url }}" /> + <link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicon-32x32.png" | relative_url }}" /> + + <!-- RSS --> + <link rel="alternate" type="application/rss+xml" title="RSS" href="{{ "/atom.xml" | relative_url }}" /> </head> |