bravissimo 0.0.21 → 0.0.22
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/_includes/head.html +17 -6
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: bdc4347377a6c355a040a59fe7ce7e142fa367ceca3b6c00eeb8f85f610daea5
|
|
4
|
+
data.tar.gz: b41640db67897b382ba4d808ca42347e609bb04cc49a1e29346b90000cb6efba
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6d3126a4b544a4408cf48548b32c652a73f210a65f44bdffcfc47f081e09e7bed441c5292214166e73b136a2b4a2b704dd37e43d4084a20fde7ac58aabebd3c2
|
|
7
|
+
data.tar.gz: c1be39809d799d1a371837a2da2bd4a92bec6a2786c11ffad6759f1255ac74baef52bf8a44eed2ddb653afb0f6202e0330d5c42bdf3593933a473933217a196a
|
data/_includes/head.html
CHANGED
|
@@ -3,17 +3,28 @@
|
|
|
3
3
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8"/>
|
|
4
4
|
<meta name="viewport" content="width=device-width, initial-scale=1"/>
|
|
5
5
|
|
|
6
|
-
|
|
6
|
+
{% for meta_tag in site.meta_tags %}
|
|
7
|
+
{{ meta_tag }}
|
|
8
|
+
{% endfor %}
|
|
7
9
|
|
|
8
10
|
<meta content="{{ site.title }}" property="og:site_name"/>
|
|
11
|
+
<meta content="{{ site.url }}" property="og:referenced"/>
|
|
9
12
|
|
|
10
|
-
<meta content="{{ page.description }}
|
|
11
|
-
|
|
13
|
+
<meta content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.short_description }}{% endif %}"/>
|
|
14
|
+
<meta name="twitter:description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.short_description }}{% endif %}">
|
|
12
15
|
<meta name="description" content="{% if page.description %}{{ page.description | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.short_description }}{% endif %}"/>
|
|
13
16
|
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
+
{% if page.title %}
|
|
18
|
+
<meta content="{{ page.title }}" property="og:title"/>
|
|
19
|
+
<title>{{ page.title }}</title>
|
|
20
|
+
{% else %}
|
|
21
|
+
<meta content="{{ site.title }}" property="og:title"/>
|
|
22
|
+
<title>{{ site.title }}</title>
|
|
23
|
+
{% endif %}
|
|
24
|
+
|
|
25
|
+
{% if site.google_plus_username %}
|
|
26
|
+
<link rel="publisher" href="https://plus.google.com/+{{ site.google_plus_username }}"/>
|
|
27
|
+
{% endif %}
|
|
17
28
|
|
|
18
29
|
<link rel="stylesheet" href="/assets/css/main.css"/>
|
|
19
30
|
<link rel="stylesheet" href="/assets/css/font-awesome.css"/>
|