diff options
author | Valentin Popov <valentineus@gmail.com> | 2018-04-11 06:00:52 +0300 |
---|---|---|
committer | Valentin Popov <valentineus@gmail.com> | 2018-04-11 06:00:52 +0300 |
commit | 07d814b6637987359a114d9eec92bfeb61b382b6 (patch) | |
tree | 10d7beb7193643f4bed25df78da418baf7c7926a /_includes | |
parent | fc8d16771c38dfbc6357622fec7c93c2f5b77732 (diff) | |
download | popov.link-07d814b6637987359a114d9eec92bfeb61b382b6.tar.xz popov.link-07d814b6637987359a114d9eec92bfeb61b382b6.zip |
Site title
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/head.html | 59 |
1 files changed, 36 insertions, 23 deletions
diff --git a/_includes/head.html b/_includes/head.html index 035aad2..ec6a599 100644 --- a/_includes/head.html +++ b/_includes/head.html @@ -1,39 +1,52 @@ +<!-- Generate a header --> +{% if page.title %} + {% capture title %} + {{ page.title }} · {{ site.title }} + {% endcapture %} +{% else %} + {% assign title = site.title %} +{% endif %} + +<!-- Generate a description --> +{% if page.description %} + {% assign description = page.description %} +{% else %} + {% assign description = site.description %} +{% endif %} + <head> <!-- Meta tags --> - <link rel="canonical" href="{{ site.url | absolute_url | uri_escape }}" /> - <link rel="profile" href="http://gmpg.org/xfn/11" /> + <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1" /> <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" /> + <link rel="profile" href="http://gmpg.org/xfn/11" /> - <title> - {% if page.id == "index" %} - {{ site.title | smartify | strip_html | normalize_whitespace }} - {% else %} - {{ page.title | smartify | strip_html | normalize_whitespace }} · - {{ site.title | smartify | strip_html | normalize_whitespace }} - {% endif %} - </title> + <!-- Search engines --> + <link rel="canonical" href="{{ site.url | absolute_url | uri_escape }}" /> + <meta name="google-site-verification" content="BkBsaYAO1LuQDRceyK2odvcpfuP2al0y04LnBda1uvE" /> + <meta name="yandex-verification" content="14221e61b87bbd27" /> + <meta name="robots" content="index, follow" /> - <!-- Font Awesome --> - <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/fontawesome.css" /> - <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/brands.css" /> - <link rel="stylesheet" href="//use.fontawesome.com/releases/v5.0.9/css/solid.css" /> + <!-- Title / Description --> + <meta name="description" content="{{ description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}" /> + <meta name="application-name" content="{{ title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}" /> + <title>{{ title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}</title> <!-- Google Fonts --> - <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Abril+Fatface" /> - <link rel="stylesheet" href="//fonts.googleapis.com/css?family=PT+Sans" /> + <link rel="stylesheet" href="//fonts.googleapis.com/css?family=Roboto|Roboto+Mono" /> <!-- CSS --> - <link rel="stylesheet" href="{{ "/assets/css/poole.css" | relative_url | uri_escape }}" /> - <link rel="stylesheet" href="{{ "/assets/css/syntax.css" | relative_url | uri_escape }}" /> - <link rel="stylesheet" href="{{ "/assets/css/hyde.css" | relative_url | uri_escape }}" /> + <link rel="stylesheet" href="{{ '/assets/css/style.css' | relative_url | uri_escape }}" /> + <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url | uri_escape }}" /> <!-- Favicon --> - <link rel="apple-touch-icon" sizes="180x180" href="{{ "/assets/apple-touch-icon.png" | relative_url | uri_escape }}" /> - <link rel="icon" type="image/png" sizes="16x16" href="{{ "/assets/favicon-16x16.png" | relative_url | uri_escape }}" /> - <link rel="icon" type="image/png" sizes="32x32" href="{{ "/assets/favicon-32x32.png" | relative_url | uri_escape }}" /> + <link rel="apple-touch-icon" sizes="180x180" href="{{ '/assets/apple-touch-icon.png' | relative_url | uri_escape }}" /> + <link rel="icon" type="image/png" sizes="16x16" href="{{ '/assets/favicon-16x16.png' | relative_url | uri_escape }}" /> + <link rel="icon" type="image/png" sizes="32x32" href="{{ '/assets/favicon-32x32.png' | relative_url | uri_escape }}" /> <!-- RSS --> <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ site.rss | relative_url | uri_escape }}" /> + + <!-- JavaScript --> + <script type="text/javascript" src="{{ '/assets/javascript/anchor-js/anchor.min.js' | relative_url | uri_escape }}"></script> </head> |