jekyll-theme-pirati 6.5.0 → 6.6.0
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/article-infobox.html +1 -0
- data/_includes/head-custom.html +0 -0
- data/_includes/head.html +3 -0
- data/_layouts/post.html +8 -1
- data/_sass/components/article-infobox.scss +9 -0
- data/_sass/pirati.scss +1 -0
- metadata +4 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: db1fead07c4bf5a90d7a67db1e5aa5254be2a2578935f1e4f5c39210ff9038ad
|
|
4
|
+
data.tar.gz: 000ec6286ff747f8920660ce98c60832f091e2bfd5831b8ed5a0ac1ab008be83
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bf26b9bd1c1c63eaa57488792b0236d0ca7d657583583c63006eab534bcd5dc0bb853926418972678aee4e80f84f328b1d7734302af8a07386b327803b96fccf
|
|
7
|
+
data.tar.gz: fcabb835ab5084229c253507626385737c1289747beccbcb09ca69570a3d1c8257fe1b9aa92eef959abdcacccdb6f6dfc4316ecfc23c64c40a6b6b0730f3e67f
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
<div class="c-article-infobox">{{ include.content }}</div>
|
|
File without changes
|
data/_includes/head.html
CHANGED
|
@@ -57,5 +57,8 @@
|
|
|
57
57
|
<script type="text/javascript">Loader.load({% if page.mapycz_api=='mini-api' %}null, {api:"simple"}{% endif %})</script>
|
|
58
58
|
<style>.smap img { max-width: none !important; transform: none;}</style>
|
|
59
59
|
{% endif %}
|
|
60
|
+
|
|
61
|
+
{% comment %}You can add your own content in _includes/head-custom.html and it will get appended to the page head{% endcomment %}
|
|
62
|
+
{% include head-custom.html %}
|
|
60
63
|
</head>
|
|
61
64
|
|
data/_layouts/post.html
CHANGED
|
@@ -90,8 +90,15 @@ layout: default
|
|
|
90
90
|
</div>
|
|
91
91
|
</div>
|
|
92
92
|
</div>
|
|
93
|
-
</div>
|
|
94
93
|
|
|
94
|
+
{% comment %}Optional infoboxes in the right row{% endcomment %}
|
|
95
|
+
{% if page.infoboxes %}
|
|
96
|
+
{% for infobox in page.infoboxes %}
|
|
97
|
+
{% include article-infobox.html content=infobox.content %}
|
|
98
|
+
{% endfor %}
|
|
99
|
+
{% endif %}
|
|
100
|
+
|
|
101
|
+
</div>
|
|
95
102
|
</div>
|
|
96
103
|
</div>
|
|
97
104
|
</div>
|
data/_sass/pirati.scss
CHANGED
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: 6.
|
|
4
|
+
version: 6.6.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jitka Novotná
|
|
@@ -65,6 +65,7 @@ files:
|
|
|
65
65
|
- _data/campaigns.yml
|
|
66
66
|
- _data/menu.yml
|
|
67
67
|
- _includes/accordeon/accordeon.html
|
|
68
|
+
- _includes/article-infobox.html
|
|
68
69
|
- _includes/articles/author.html
|
|
69
70
|
- _includes/articles/horizontal-article.html
|
|
70
71
|
- _includes/articles/list-responsive.html
|
|
@@ -76,6 +77,7 @@ files:
|
|
|
76
77
|
- _includes/disqus_comments.html
|
|
77
78
|
- _includes/footer.html
|
|
78
79
|
- _includes/google-analytics.html
|
|
80
|
+
- _includes/head-custom.html
|
|
79
81
|
- _includes/head.html
|
|
80
82
|
- _includes/header.html
|
|
81
83
|
- _includes/headline-media.html
|
|
@@ -132,6 +134,7 @@ files:
|
|
|
132
134
|
- _sass/_sprites.scss
|
|
133
135
|
- _sass/components/Slider.scss
|
|
134
136
|
- _sass/components/academic-title.scss
|
|
137
|
+
- _sass/components/article-infobox.scss
|
|
135
138
|
- _sass/components/article-listing.scss
|
|
136
139
|
- _sass/components/banner.scss
|
|
137
140
|
- _sass/components/blockquote.scss
|