teatro-vecchio 0.2.7 → 0.2.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/footer.html +0 -2
- data/_includes/head.html +35 -3
- data/_includes/header.html +6 -3
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8dc7720712b861fe3a12ab3b3649dce8f22e80ef495e51cbdeb562d14f80b532
|
4
|
+
data.tar.gz: 323509b649902bf24e8b92cdb9fc00b3cba89ceb9fb91c3402963410b6c53d48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6c52b72cd523fb4d7ed5cc8583624ae25623a81cc1ce3212637ed37d22149275036094e1dcfd03e40edbf7a1b1f42f4c19f4f6d9fbe6ca2c49ec060c5fabb6a2
|
7
|
+
data.tar.gz: 530074656aa08f973de9515d59454007cc09315662c838a4d44c9f60b96caf0ddc4337eb3b2f58c486a091ec1af79b1d06dca6fb545cf3c4d4b75a69f178dcf1
|
data/_includes/footer.html
CHANGED
@@ -31,8 +31,6 @@
|
|
31
31
|
<p>{% t global.description %}</p>
|
32
32
|
|
33
33
|
</footer>
|
34
|
-
<!-- Main font -->
|
35
|
-
<link href="https://fonts.googleapis.com/css?family=Inconsolata" rel="stylesheet" async="async">
|
36
34
|
|
37
35
|
{%- if site.google_analytics_account -%}
|
38
36
|
<!-- Global site tag (gtag.js) - Google Analytics -->
|
data/_includes/head.html
CHANGED
@@ -5,10 +5,32 @@
|
|
5
5
|
|
6
6
|
<title>{% if page.title %}{{ page.title | escape }}{% else %}{{ site.title | escape }}{% endif %}</title>
|
7
7
|
<meta name="description" content="{% if page.excerpt %}{{ page.excerpt | strip_html | strip_newlines | truncate: 160 }}{% else %}{{ site.description }}{% endif %}">
|
8
|
+
|
9
|
+
<script>
|
10
|
+
|
11
|
+
WebFontConfig = {
|
12
|
+
google: {
|
13
|
+
families: ['Inconsolata:400,700']
|
14
|
+
}, async:true
|
15
|
+
};
|
16
|
+
|
17
|
+
(function(d) {
|
18
|
+
var wf = d.createElement('script'), s = d.scripts[0];
|
19
|
+
wf.src = 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js';
|
20
|
+
wf.async = true;
|
21
|
+
s.parentNode.insertBefore(wf, s);
|
22
|
+
})(document);
|
23
|
+
|
24
|
+
</script>
|
25
|
+
|
8
26
|
<style>
|
9
27
|
|
28
|
+
.wf-active body{
|
29
|
+
font-family: 'Inconsolata'
|
30
|
+
}
|
31
|
+
|
10
32
|
body{
|
11
|
-
font-family:
|
33
|
+
font-family: monospace;
|
12
34
|
font-size: 100%;
|
13
35
|
max-width: 75%;
|
14
36
|
margin: 0 auto;
|
@@ -19,14 +41,24 @@
|
|
19
41
|
}
|
20
42
|
|
21
43
|
blockquote {
|
22
|
-
|
44
|
+
color: #ccc;
|
23
45
|
}
|
24
|
-
|
46
|
+
code.highlighter-rouge{
|
47
|
+
color: #ccc;
|
25
48
|
background-color: #111;
|
49
|
+
background: repeating-linear-gradient(#111, #111 3px, #f22 3px, #f22 10px);
|
50
|
+
background-size:5px auto;
|
51
|
+
padding: 2px;
|
52
|
+
border-radius: 2px;
|
53
|
+
}
|
54
|
+
pre {
|
26
55
|
color: #ccc;
|
27
56
|
padding: 20px;
|
28
57
|
border-radius: 6px;
|
29
58
|
overflow-x: auto;
|
59
|
+
background-color: #111;
|
60
|
+
background: repeating-linear-gradient(#111, #111 3px, #f22 3px, #f22 10px);
|
61
|
+
background-size:5px auto;
|
30
62
|
}
|
31
63
|
|
32
64
|
h1, h2, h3, h4, h5, h6 {font-size: 100%}
|
data/_includes/header.html
CHANGED
@@ -2,9 +2,12 @@
|
|
2
2
|
<a class="site-title" href="{{ site.baseurl }}/">{{ site.title }}</a>
|
3
3
|
<div style="float: right">
|
4
4
|
{% if site.lang == "en" %}
|
5
|
-
<a class="link-it" href="{{ site.baseurl_root }}/it">
|
6
|
-
|
7
|
-
|
5
|
+
<a class="link-it" href="{{ site.baseurl_root }}/it">It</a>
|
6
|
+
| Eng
|
7
|
+
{% endif %}
|
8
|
+
{% if site.lang == "it"%}
|
9
|
+
It |
|
10
|
+
<a class="link-en" href="{{ site.baseurl_root }}/">Eng</a>
|
8
11
|
{% endif %}
|
9
12
|
</div>
|
10
13
|
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: teatro-vecchio
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.2.
|
4
|
+
version: 0.2.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Alessandro Descovi
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-05-
|
12
|
+
date: 2018-05-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|