forked from project-flotta/project-flotta.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
head.html
executable file
·31 lines (24 loc) · 1.18 KB
/
head.html
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
<head>
<meta charset="utf-8">
<title>{% if page.title %}{{ page.title }}{% else %}{{ site.data.settings.title }}{% endif %}</title>
<!-- mobile responsive meta -->
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="description" content="{%if page.description%}{{page.description}}{%else%}{{site.data.settings.description}}{%endif%}">
{% if site.author %}
<meta name="author" content="{{ . }}">
{% endif %}
<!-- ** Plugins Needed for the Project ** -->
{% for css in site.data.plugins.css %}
<link rel="stylesheet" href="{{ css | relative_url }}">
{% endfor %}
<link href="{{ '/assets/scss/syntax_monokai.css' | relative_url }}" rel="stylesheet">
<!-- Main Stylesheet -->
<link href="{{ '/assets/scss/style.css' | relative_url }}" rel="stylesheet">
<!--Favicon-->
<link rel="shortcut icon" href="{{ '/assets/images/favicon.png' | relative_url }} " type="image/x-icon">
<link rel="icon" href="{{ '/assets/images/flotta-logo-stacked.ico' | relative_url }} " type="image/x-icon">
<!-- google analytics -->
{% if site.data.settings.google-analytics %}
{% include google-analytics.html %}
{% endif %}
</head>