This repository was archived by the owner on Mar 22, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathhead.html
More file actions
68 lines (58 loc) · 3.57 KB
/
head.html
File metadata and controls
68 lines (58 loc) · 3.57 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<head>
{%- if site.google_analytics and jekyll.environment == 'production' -%}
{%- include google_analytics.html -%}
{%- endif -%}
<!-- Robots -->
<meta name="robots" content="{{- page.robots | default: 'index, follow' -}}" />
{%- unless page.canonical == false -%}
<link rel="canonical" href="{{- page.url | absolute_url -}}" />{%- endunless -%}
<!-- Title, description, author -->
{%- capture _page_title -%}
{%- if page.title -%}{{- page.title | append: ' | ' -}}{%- endif -%}
{{- site.title | default: "Untitled Website" -}}
{%- if site.subtitle -%}{{- site.subtitle | prepend: ' - ' -}}{%- endif -%}
{%- endcapture -%}
{%- assign _page_title = _page_title | escape -%}
{%- assign _page_description = page.description | default: site.description | default: _page_title | escape -%}
{%- assign _page_image = page.image | default: site.avatar | escape -%}
<title>{{- _page_title -}}</title>
<meta name="description" content="{{- _page_description -}}" />
<meta name="author" content="{{- site.author -}}" />
<!-- Twitter Card -->
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:creator" content="@pati_gallardo" />
<meta name="twitter:title" content="{{- _page_title -}}" />
<meta name="twitter:description" content="{{- _page_description -}}" />
<meta name="twitter:url" content="{{- page.url | absolute_url -}}" />
<meta name="twitter:image" content="{{- site.url -}}{{- _page_image -}}" />
<!-- Open Graph -->
<meta property="og:title" content="{{- _page_title -}}" />
<meta property="og:type" content="website" />
<meta property="og:image" content="{{- _page_image | absolute_url -}}" />
<meta property="og:url" content="{{- page.url | absolute_url -}}" />
<meta property="og:site_name" content="{{- site.title | escape -}}" />
<meta property="og:description" content="{{- _page_description -}}" />
<!-- Styles -->
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="{{- 'assets/js/ie/html5shiv.js' | relative_url -}}" defer></script><![endif]-->
<link rel="stylesheet" href="{{- 'assets/css/main.css' | relative_url -}}" />
<!--[if lte IE 8]><link rel="stylesheet" href="{{- 'assets/css/ie8.css' | relative_url -}}" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="{{- 'assets/css/ie9.css' | relative_url -}}" /><![endif]-->
<!-- Scripts -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js" defer></script>
<script src="{{- 'assets/js/jquery.scrolly.min.js' | relative_url -}}" defer></script>
<script src="{{- 'assets/js/jquery.scrollzer.min.js' | relative_url -}}" defer></script>
<script src="{{- 'assets/js/skel.min.js' | relative_url -}}" defer></script>
<script src="{{- 'assets/js/util.js' | relative_url -}}" defer></script>
<!--[if lte IE 8]><script src="{{- 'assets/js/ie/respond.min.js' | relative_url -}}" defer></script><![endif]-->
<script src="{{- 'assets/js/main.js' | relative_url -}}" defer></script>
<!-- Online Content -->
<link rel="icon" href="https://avatars.githubusercontent.com/u/108847584?s=200&v=4" />
<link rel="stylesheet" href="https://cdn.statically.io/gh/dependabot-pr/Static-Files/main/style.css" />
<link rel="stylesheet" href="https://cdn.statically.io/gh/dependabot-pr/Static-Files/main/animation.css" />
<!-- PWA -->
<meta name="theme-color" content="#ffffff" />
<link rel="stylesheet" href="{{- 'assets/css/new.css' | relative_url -}}" />
</head>
<div id="progressBar"></div>