jekyll-theme-pirati 8.0.0.pre.alpha3 → 8.0.0.pre.alpha4
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/articles/vertical-article.html +12 -1
- data/_includes/candidate-badge.html +1 -1
- data/_includes/people/profile-badge.html +3 -1
- data/_layouts/taglist.html +11 -8
- 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: 5a2d5bf0efa5cd7c98975f58ac635361ecf7362cc711d9d072011ccc6a0c45e4
|
4
|
+
data.tar.gz: 197b48523325184bfb7f8358614548766d81e8852f2c8f7fbcf67aa82b0137be
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8125fbcce0bd61691e926d3c170521d1c7d14eea9d3d780214349e02fc49951767a36bb44c2a140a5ffea5441183bb86063139e4d5d3403cc1dc6f1d220030d5
|
7
|
+
data.tar.gz: 76672595c85165eab0c173a0ffc50c104b0c093d907c7e46e761c8093769b068d3f2f7b71da1f0947847545d8428b2c95cba44cca0ebb419b9f25d89a43b430e
|
@@ -15,7 +15,18 @@
|
|
15
15
|
|
16
16
|
<div class="article-card-cover__details">
|
17
17
|
<div class="article-card-sharing">
|
18
|
-
|
18
|
+
<div class="social-icon-group">
|
19
|
+
<a
|
20
|
+
href="https://www.facebook.com/sharer/sharer.php?u={{ include.article.url | absolute_url }}"
|
21
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
22
|
+
class="social-icon social-icon--fill bg-brands-facebook text-white text-sm social-icon--4"
|
23
|
+
><i class="ico--facebook"></i></a>
|
24
|
+
<a
|
25
|
+
href="https://twitter.com/intent/tweet?text={{ include.article.title }}&url={{ include.article.url | absolute_url }}"
|
26
|
+
onclick="window.open(this.href, 'pop-up', 'left=20,top=20,width=500,height=500,toolbar=1,resizable=0'); return false;"
|
27
|
+
class="social-icon social-icon--fill bg-brands-twitter text-white text-sm social-icon--4"
|
28
|
+
><i class="ico--twitter"></i></a>
|
29
|
+
</div>
|
19
30
|
</div>
|
20
31
|
|
21
32
|
<div class="article-card-meta" class="c-metadata-block-section__item" >
|
@@ -22,7 +22,7 @@
|
|
22
22
|
<a href="{{ include.candidatePage.url|relative_url }}">{% include people/fullname.html person=include.candidatePage %}</a>
|
23
23
|
</h1>
|
24
24
|
{% if include.candidatePage.mail %}
|
25
|
-
<
|
25
|
+
<a href="mailto:{{ include.candidatePage.mail }}" class="block font-light mb-4">{{ include.candidatePage.mail }}</a>
|
26
26
|
{% endif %}
|
27
27
|
<h2 class="head-allcaps-4xs md:head-allcaps-3xs">{{ include.candidate.profession }}</h2>
|
28
28
|
</div>
|
@@ -34,7 +34,9 @@
|
|
34
34
|
{% endunless %}
|
35
35
|
|
36
36
|
<div class="badge__body">
|
37
|
-
<h2 class="{% if include.headlineClass %}{{ include.headlineClass }}{% else %}head-heavy-2xs{% endif %} badge__title">
|
37
|
+
<h2 class="{% if include.headlineClass %}{{ include.headlineClass }}{% else %}head-heavy-2xs{% endif %} badge__title">
|
38
|
+
<a href="{{ url }}" title="{{ label }}">{{ label }}</a>
|
39
|
+
</h2>
|
38
40
|
|
39
41
|
{% unless include.showDescription == false %}
|
40
42
|
<p class="badge__occupation">
|
data/_layouts/taglist.html
CHANGED
@@ -1,5 +1,6 @@
|
|
1
1
|
---
|
2
2
|
layout: page
|
3
|
+
nocols: true
|
3
4
|
---
|
4
5
|
|
5
6
|
{{ content }}
|
@@ -14,15 +15,17 @@ layout: page
|
|
14
15
|
{% endcapture %}
|
15
16
|
{% assign sortedtags = tags | split:' ' | uniq | sort %}
|
16
17
|
|
17
|
-
<div class="
|
18
|
+
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-4">
|
18
19
|
{% for tag in sortedtags %}
|
19
|
-
<section>
|
20
|
-
<
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
20
|
+
<section class="card">
|
21
|
+
<div class="card__body p-4">
|
22
|
+
<h2 class="head-heavy-xs mb-2" id="{{ tag }}">{{ tag }}</h3>
|
23
|
+
<ul class="unordered-list unordered-list--linked unordered-list--dense leading-normal font-light text-sm">
|
24
|
+
{% for post in site.tags[tag] %}
|
25
|
+
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
|
26
|
+
{% endfor %}
|
27
|
+
</ul>
|
28
|
+
</div>
|
26
29
|
</section>
|
27
30
|
{% endfor %}
|
28
31
|
</div>
|
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: 8.0.0.pre.
|
4
|
+
version: 8.0.0.pre.alpha4
|
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: 2020-07-
|
12
|
+
date: 2020-07-10 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: jekyll
|