JekyllHomepage2025/_includes/_head.html

55 lines
2.7 KiB
HTML
Raw Normal View History

2016-02-29 22:30:35 +05:30
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title }} &#8211; {% endif %}{{ site.title }}</title>
{% if page.excerpt %}<meta name="description" content="{{ page.excerpt | strip_html }}">{% endif %}
<meta name="keywords" content="{{ page.tags | join: ', ' }}">
{% if page.author %}
{% assign author = site.data.authors[page.author] %}{% else %}{% assign author = site.owner %}
{% endif %}
{% include _open-graph.html %}
{% if site.owner.google.verify %}<!-- Webmaster Tools verfication -->
<meta name="google-site-verification" content="{{ site.owner.google.verify }}">{% endif %}
{% if site.owner.bing-verify %}<meta name="msvalidate.01" content="{{ site.owner.bing-verify }}">{% endif %}
2018-02-22 01:47:44 +05:30
{% capture canonical %}{{ site.github.url }}{% if site.permalink contains '.html' %}{{ page.url }}{% else %}{{ page.url | remove:'index.html' | strip_slash }}{% endif %}{% endcapture %}
2016-02-29 22:30:35 +05:30
<link rel="canonical" href="{{ canonical }}">
2018-02-22 01:47:44 +05:30
<link href="{{ site.github.url }}/feed.xml" type="application/atom+xml" rel="alternate" title="{{ site.title }} Feed">
2016-02-29 22:30:35 +05:30
2018-02-24 02:29:39 +05:30
<!-- https://t.co/dKP3o1e -->
2016-02-29 22:30:35 +05:30
<meta name="HandheldFriendly" content="True">
<meta name="MobileOptimized" content="320">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!-- For all browsers -->
2018-02-22 01:47:44 +05:30
<link rel="stylesheet" href="{{ site.github.url }}/assets/css/main.css">
2016-02-29 22:30:35 +05:30
<meta http-equiv="cleartype" content="on">
<!-- Modernizr -->
2018-02-22 01:47:44 +05:30
<script src="{{ site.github.url }}/assets/js/vendor/modernizr-2.7.1.custom.min.js"></script>
2016-02-29 22:30:35 +05:30
<link href='//fonts.googleapis.com/css?family=PT+Sans+Narrow:400,700%7CPT+Serif:400,700,400italic' rel='stylesheet' type='text/css'>
2018-02-22 01:47:44 +05:30
<link rel="stylesheet" href="{{ site.github.url }}/assets/css/academicons/css/academicons.css"/>
2016-02-29 22:30:35 +05:30
<!-- Icons -->
<!-- 16x16 -->
2018-02-22 01:47:44 +05:30
<link rel="shortcut icon" href="{{ site.github.url }}/favicon.ico">
2016-02-29 22:30:35 +05:30
<!-- 32x32 -->
2018-02-22 01:47:44 +05:30
<link rel="shortcut icon" href="{{ site.github.url }}/favicon.png">
2016-02-29 22:30:35 +05:30
<!-- 57x57 (precomposed) for iPhone 3GS, pre-2011 iPod Touch and older Android devices -->
2018-02-22 01:47:44 +05:30
<link rel="apple-touch-icon-precomposed" href="{{ site.github.url }}/images/apple-touch-icon-precomposed.png">
2016-02-29 22:30:35 +05:30
<!-- 72x72 (precomposed) for 1st generation iPad, iPad 2 and iPad mini -->
2018-02-22 01:47:44 +05:30
<link rel="apple-touch-icon-precomposed" sizes="72x72" href="{{ site.github.url }}/images/apple-touch-icon-72x72-precomposed.png">
2016-02-29 22:30:35 +05:30
<!-- 114x114 (precomposed) for iPhone 4, 4S, 5 and post-2011 iPod Touch -->
2018-02-22 01:47:44 +05:30
<link rel="apple-touch-icon-precomposed" sizes="114x114" href="{{ site.github.url }}/images/apple-touch-icon-114x114-precomposed.png">
2016-02-29 22:30:35 +05:30
<!-- 144x144 (precomposed) for iPad 3rd and 4th generation -->
2018-02-22 01:47:44 +05:30
<link rel="apple-touch-icon-precomposed" sizes="144x144" href="{{ site.github.url }}/images/apple-touch-icon-144x144-precomposed.png">
2018-01-08 23:20:32 +05:30
<!--Jekyll-seo plugin-->
{% seo %}