jekyll-theme-pirati 4.2.3 → 4.2.4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_layouts/contacts.html +7 -5
- data/_layouts/post.html +17 -7
- data/_sass/components/widget-share-box.scss +78 -4
- 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: f9a965effe7776a03f32d81302bf1c0ce88001c9b8f7d4a8d931e037d9fc4315
|
4
|
+
data.tar.gz: 2dfc8f04b83cf234c4ab865e5796bba44b6ee686259361e45485c7ac9c7754e5
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ccc8d2d7f517598819922293171476d7471763b7d0759c76bfee5725d8279b540951ee6c6ac0cc78f7f8735e5986b07f2ce6fbcc1993ad56a2636e0eaab82a8f
|
7
|
+
data.tar.gz: e4f82b89e3bfcf6dc880915f88720187e5be46e61b8d2b65c41eb85868771bfbd2263dcf6084a8056a4e0b74b13be1fec981958359d2c7b2c62d17e11abe23c5
|
data/_layouts/contacts.html
CHANGED
@@ -16,10 +16,12 @@ title: Kontaktní informace
|
|
16
16
|
</header>
|
17
17
|
<div class="o-section-block o-section-block--fill">
|
18
18
|
<div class="u-cf">
|
19
|
-
<div class="medium-12 large-
|
20
|
-
|
19
|
+
<div class="medium-12 large-8 columns o-section-mediumdown-divided-small">
|
20
|
+
<div itemprop="description" class="c-content-block c-emphasized-text">
|
21
|
+
{{ content }}
|
21
22
|
</div>
|
22
|
-
|
23
|
+
</div>
|
24
|
+
<div class="medium-12 large-4 columns o-section-mediumdown-divided-small">
|
23
25
|
{% include contacts/basic-contacts.html %}
|
24
26
|
</div>
|
25
27
|
</div>
|
@@ -33,7 +35,7 @@ title: Kontaktní informace
|
|
33
35
|
<hr>
|
34
36
|
<div class="row o-section-block o-section-block--divided">
|
35
37
|
|
36
|
-
<div class="medium-12 large-
|
38
|
+
<div class="medium-12 large-8 columns">
|
37
39
|
<section class="o-section o-section--spaceBot">
|
38
40
|
<div class="o-section-inner">
|
39
41
|
<div class="o-section-block">
|
@@ -48,7 +50,7 @@ title: Kontaktní informace
|
|
48
50
|
</div>
|
49
51
|
|
50
52
|
{% if page.residence %}
|
51
|
-
<div class="medium-12 large-
|
53
|
+
<div class="medium-12 large-4 columns">
|
52
54
|
<div class="o-section o-section--spaceBot">
|
53
55
|
<div class="o-section-inner">
|
54
56
|
<div class="o-section-block">
|
data/_layouts/post.html
CHANGED
@@ -63,20 +63,30 @@ layout: default
|
|
63
63
|
{{ content }}
|
64
64
|
</div>
|
65
65
|
</div>
|
66
|
+
|
66
67
|
<div class="medium-12 large-4 columns">
|
67
68
|
<div class="c-widget-share-box c-widget-share-box--mediumstacked">
|
68
69
|
<div class="c-widget-share-box-headline">Sdílení je aktem lásky</div>
|
69
70
|
<div class="c-widget-share-box-content">
|
70
|
-
|
71
|
-
|
72
|
-
<
|
73
|
-
|
74
|
-
|
75
|
-
|
76
|
-
|
71
|
+
|
72
|
+
<!-- https://mycyberuniverse.com/web/social-media-share-bar-jekyll-blog-website.html -->
|
73
|
+
<div class="share-buttons">
|
74
|
+
<a href="https://www.facebook.com/sharer/sharer.php?u={{ page.url | absolute_url }}"
|
75
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
76
|
+
title="Share on Facebook" >
|
77
|
+
<i class="fa fa-facebook-official share-button"> facebook</i>
|
78
|
+
</a>
|
79
|
+
</br>
|
80
|
+
<a href="https://twitter.com/intent/tweet?text={{ page.title }}&url={{ page.url | absolute_url }}"
|
81
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
82
|
+
title="Share on Twitter" >
|
83
|
+
<i class="fa fa-twitter share-button"> twitter</i>
|
84
|
+
</a>
|
85
|
+
</div>
|
77
86
|
</div>
|
78
87
|
</div>
|
79
88
|
</div>
|
89
|
+
|
80
90
|
</div>
|
81
91
|
</div>
|
82
92
|
</div>
|
@@ -49,9 +49,83 @@
|
|
49
49
|
margin-top: 2.75rem;
|
50
50
|
}
|
51
51
|
|
52
|
-
|
53
|
-
.
|
54
|
-
display: block;
|
55
|
-
margin-top: 0.5rem;
|
52
|
+
/* All buttons */
|
53
|
+
.share-buttons {
|
56
54
|
}
|
57
55
|
|
56
|
+
/* Each button */
|
57
|
+
.share-button {
|
58
|
+
margin: 0px;
|
59
|
+
margin-bottom: 10px;
|
60
|
+
margin-right: 3px;
|
61
|
+
border: 1px solid #D3D6D2;
|
62
|
+
padding: 5px 10px 5px 10px;
|
63
|
+
}
|
64
|
+
.share-button:hover {
|
65
|
+
opacity: 1;
|
66
|
+
color: #ffffff;
|
67
|
+
}
|
68
|
+
|
69
|
+
/* Facebook button */
|
70
|
+
.fa-facebook-official {
|
71
|
+
color: #3b5998;
|
72
|
+
}
|
73
|
+
.fa-facebook-official:hover {
|
74
|
+
background-color: #3b5998;
|
75
|
+
}
|
76
|
+
|
77
|
+
/* Twitter button */
|
78
|
+
.fa-twitter {
|
79
|
+
color: #55acee;
|
80
|
+
}
|
81
|
+
.fa-twitter:hover {
|
82
|
+
background-color: #55acee;
|
83
|
+
}
|
84
|
+
|
85
|
+
/* Google-PLus button */
|
86
|
+
.fa-google-plus {
|
87
|
+
color: #dd4b39;
|
88
|
+
}
|
89
|
+
.fa-google-plus:hover {
|
90
|
+
background-color: #dd4b39;
|
91
|
+
}
|
92
|
+
|
93
|
+
/* Pinterest button */
|
94
|
+
.fa-pinterest-p {
|
95
|
+
color: #cb2027;
|
96
|
+
}
|
97
|
+
.fa-pinterest-p:hover {
|
98
|
+
background-color: #cb2027;
|
99
|
+
}
|
100
|
+
|
101
|
+
/* Tumblr button */
|
102
|
+
.fa-tumblr {
|
103
|
+
color: #32506d;
|
104
|
+
}
|
105
|
+
.fa-tumblr:hover {
|
106
|
+
background-color: #32506d;
|
107
|
+
}
|
108
|
+
|
109
|
+
/* Reddit button */
|
110
|
+
.fa-reddit-alien {
|
111
|
+
color: #ff4500;
|
112
|
+
}
|
113
|
+
.fa-reddit-alien:hover {
|
114
|
+
background-color: #ff4500;
|
115
|
+
}
|
116
|
+
|
117
|
+
/* LinkedIn button */
|
118
|
+
.fa-linkedin {
|
119
|
+
color: #007bb5;
|
120
|
+
}
|
121
|
+
.fa-linkedin:hover {
|
122
|
+
background-color: #007bb5;
|
123
|
+
}
|
124
|
+
|
125
|
+
/* Email button */
|
126
|
+
.fa-envelope {
|
127
|
+
color: #444444;
|
128
|
+
}
|
129
|
+
.fa-envelope:hover {
|
130
|
+
background-color: #444444;
|
131
|
+
}
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-pirati
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.2.
|
4
|
+
version: 4.2.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Jitka Novotná
|
@@ -9,7 +9,7 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: bin
|
11
11
|
cert_chain: []
|
12
|
-
date: 2018-07-
|
12
|
+
date: 2018-07-05 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|