jekyll-theme-mehdix-rtl 0.1.10 → 0.1.11
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/head.html +25 -17
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: ba2f1389599fb17f272293aeb6841de71bcb8042
|
4
|
+
data.tar.gz: c32a9fe00b6918ff366ac5cad53b4b3e4b2f6b7f
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d192ac6fba728724b9e7229faa18c259551a1e7e8e337e956f0a44be9da23b39a4811c4bcaeaf1f5242555a5b9bf2f77bf28eb5217b2810c9777ea17d0d6843a
|
7
|
+
data.tar.gz: 1ec2c3dcb6f8759df1789585fad0574607eb2bcbe2ec40df079bf4a79ab654aa62e2cb1b96fc38169d5d6804b21c7978de28410dcc929e223a397c2eaa31eb9b
|
data/_includes/head.html
CHANGED
@@ -1,26 +1,34 @@
|
|
1
1
|
<head>
|
2
|
-
<meta charset="utf-8"
|
2
|
+
<meta charset="utf-8" />
|
3
3
|
<meta name="viewport" content="width=device-width initial-scale=1" />
|
4
|
-
|
4
|
+
{%- if page.tags -%}
|
5
|
+
<meta name="keywords" content='{{ page.tags | join: "," }}' />
|
6
|
+
{%- else -%}
|
7
|
+
<meta name="keywords" content="{{ site.keywords }}" />
|
8
|
+
{%- endif -%}
|
5
9
|
<meta name="author" content="{{ site.author}}" />
|
6
10
|
<meta name="copyright" content="{{ site.copyright }}" />
|
7
11
|
<meta name="robot" content="{{ site.robot }}" />
|
8
|
-
<meta http-equiv="X-UA-Compatible" content="IE=edge"
|
9
|
-
<meta name="description" content="{{ site.description | strip_newlines}}"
|
10
|
-
|
12
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
|
13
|
+
<meta name="description" content="{{ site.description | strip_newlines}}" />
|
14
|
+
{%- if page.title -%}
|
15
|
+
<title>{{ page.title }} - {{ site.title}}</title>
|
11
16
|
{%- else -%}
|
12
|
-
|
17
|
+
<title>{{ site.title }}</title>
|
13
18
|
{%- endif -%}
|
14
|
-
<link rel="stylesheet" href="{{ 'assets/css/main.css' | absolute_url }}"
|
15
|
-
<link rel="canonical" href="{{ site.baseurl, page.url | absolute_url }}"
|
16
|
-
<link rel="icon" href="{{ site.favicon | absolute_url}}"
|
17
|
-
|
18
|
-
|
19
|
+
<link rel="stylesheet" href="{{ 'assets/css/main.css' | absolute_url }}" />
|
20
|
+
<link rel="canonical" href="{{ site.baseurl, page.url | absolute_url }}" />
|
21
|
+
<link rel="icon" href="{{ site.favicon | absolute_url}}" />
|
22
|
+
{%- if page.style -%}
|
23
|
+
<style type="text/css">
|
19
24
|
{
|
20
|
-
|
25
|
+
{
|
26
|
+
page.style
|
27
|
+
}
|
21
28
|
}
|
22
|
-
|
23
|
-
|
24
|
-
{%-
|
25
|
-
|
26
|
-
|
29
|
+
</style>
|
30
|
+
{%- endif -%}
|
31
|
+
{%- if page.url == "/404.html" -%}
|
32
|
+
<meta http-equiv="refresh" content="5; url='{{ site.baseurl | absolute_url}}'" />
|
33
|
+
{%- endif -%}
|
34
|
+
</head>
|