aboutsummaryrefslogtreecommitdiff
path: root/_includes/head.html
blob: 9f65d5771a41f48e8d94da569832ba647b72757a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<head>
    <!-- Meta tags -->
    <meta content="IE=edge" http-equiv="X-UA-Compatible">
    <meta content="text/html; charset=utf-8" http-equiv="content-type">
    <meta content="width=device-width, initial-scale=1" name="viewport">
    <meta content="index, follow" name="robots">

    <!-- Title / Description -->
    <meta content="{{- page.description | default: site.description | strip | normalize_whitespace | xml_escape -}}" name="description">
    <title>{{- page.title | default: site.title | strip | normalize_whitespace | xml_escape -}}</title>

    <!-- RSS -->
    <link href="{{- site.rss | absolute_url | url_escape -}}" rel="alternate" title="RSS" type="application/atom+xml">

    <!-- Canonical URL -->
    <link href="{{- page.url | absolute_url | url_escape | replace: 'index.html', '' -}}" rel="canonical">

    <!-- CSS -->
    {%- include styles.html -%}

    <!--[if lte IE 9]>
        <script type="text/javascript" src="{{- '/assets/javascript/html5shiv-3.7.3.min.js' | relative_url | url_escape -}}"></script>
        <script type="text/javascript" src="{{- '/assets/javascript/respond-1.4.2.min.js' | relative_url | url_escape -}}"></script>
    <![endif]-->
</head>