Header file has been updated

Signed-off-by: Valentin Popov <info@valentineus.link>
This commit is contained in:
Valentin Popov 2018-04-24 18:06:55 +04:00
parent 2d99793917
commit b93cb40f1a
Signed by: Valentin Popov
GPG Key ID: 269A00ACA90A8EA3

View File

@ -12,19 +12,12 @@
<meta name="robots" content="index, follow" /> <meta name="robots" content="index, follow" />
<!-- Title / Description --> <!-- Title / Description -->
<meta name="description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}" /> <meta name="description" content="{{ page.description | default: site.description | strip_newlines | strip_html | strip | normalize_whitespace | smartify | truncate: 100 }}" />
<meta name="application-name" content="{{ title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}" /> <meta name="application-name" content="{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | capitalize }}" />
<title> <title>{{ page.title | default: site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify | truncate: 64 }}</title>
{% if page.title %}{{ page.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }} &middot;{% endif %}
{{ site.title | strip_newlines | strip_html | strip | normalize_whitespace | smartify }}
</title>
<!-- Google Fonts -->
<link rel="stylesheet" href="//fonts.googleapis.com/css?family=Source+Code+Pro|Source+Sans+Pro" />
<!-- CSS --> <!-- CSS -->
<link rel="stylesheet" href="{{ '/assets/css/normalize.css' | relative_url | uri_escape }}" /> <link rel="stylesheet" href="{{ '/assets/css/fonts.css' | relative_url | uri_escape }}" />
<link rel="stylesheet" href="{{ '/assets/css/highlight.css' | relative_url | uri_escape }}" />
<link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url | uri_escape }}" /> <link rel="stylesheet" href="{{ '/assets/css/main.css' | relative_url | uri_escape }}" />
<!-- Favicon --> <!-- Favicon -->
@ -34,4 +27,8 @@
<!-- RSS --> <!-- RSS -->
<link rel="alternate" type="application/atom+xml" title="RSS" href="{{ site.rss | relative_url | uri_escape }}" /> <link rel="alternate" type="application/atom+xml" title="RSS" href="{{ site.rss | relative_url | uri_escape }}" />
<!--[if lte IE 9]>
<script type="text/javascript" src="{{ '/assets/javascript/html5shiv.min.js' | relative_url | uri_escape }}"></script>
<![endif]-->
</head> </head>