insights4you-jekyll-theme 0.5.2 → 0.5.3
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/CHANGELOG.md +6 -0
- data/_layouts/default.html +7 -5
- data/insights4you-jekyll-theme.gemspec +1 -1
- 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: e0da813ec29b0da3b877fac976a957dbc7d3f480f0bffdb755d8c2ff98ad06a1
|
|
4
|
+
data.tar.gz: 8e20a0ae06ed8c845533b9107066ee99057f9b9b2a411c2cf6c3fb1abbf507ea
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 53020092572db74af82f6d3126659df29a0b883520937e7062238128dd7c6ef46907d7136f1c83a9bddfe092646103f52646102002168cb11e1d3d079d049c2a
|
|
7
|
+
data.tar.gz: 67821a35b5aca0da22b4b8befe544587c8c76ebc15e7018bb980847ce19fcb50b298c98042688ca09b02f8b75c23612c3848d02fe79a09cd9924c5e6298a604d
|
data/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.5.3]
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
- `_layouts/default.html`: pages with `layout-wrapper-full: true` (every blog post, via the `posts` collection default) rendered a Bootstrap `.row` directly inside `.page-body` with no `.container` around it. The row's default negative horizontal margins had no container padding to cancel them out, pushing content past the viewport edge and causing a persistent horizontal scrollbar on every post. Wrapped the row in a `container-xl`, matching the non-full-width branch.
|
|
12
|
+
|
|
8
13
|
## [0.5.2]
|
|
9
14
|
|
|
10
15
|
### Fixed
|
|
@@ -139,6 +144,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
139
144
|
- **N/A**: No files or features were removed in this release.
|
|
140
145
|
|
|
141
146
|
|
|
147
|
+
[0.5.3]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.5.2...v0.5.3
|
|
142
148
|
[0.5.2]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.5.1...v0.5.2
|
|
143
149
|
[0.5.1]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.5.0...v0.5.1
|
|
144
150
|
[0.5.0]: https://github.com/marciopaiva/insights4you-jekyll-theme/compare/v0.4.0...v0.5.0
|
data/_layouts/default.html
CHANGED
|
@@ -15,11 +15,13 @@ body-class: border-top-wide border-primary
|
|
|
15
15
|
<!-- BEGIN PAGE BODY -->
|
|
16
16
|
<div class="page-body">
|
|
17
17
|
{% if layout-wrapper-full %}
|
|
18
|
-
<div class="
|
|
19
|
-
<div class="
|
|
20
|
-
<div class="
|
|
21
|
-
<div class="card-
|
|
22
|
-
|
|
18
|
+
<div class="container-xl">
|
|
19
|
+
<div class="row justify-content-center">
|
|
20
|
+
<div class="col-lg-11 col-xl-10">
|
|
21
|
+
<div class="card card-lg">
|
|
22
|
+
<div class="card-body markdown">
|
|
23
|
+
{{ content }}
|
|
24
|
+
</div>
|
|
23
25
|
</div>
|
|
24
26
|
</div>
|
|
25
27
|
</div>
|
|
@@ -5,7 +5,7 @@ require 'date'
|
|
|
5
5
|
Gem::Specification.new do |spec|
|
|
6
6
|
# Basic Information
|
|
7
7
|
spec.name = "insights4you-jekyll-theme"
|
|
8
|
-
spec.version = "0.5.
|
|
8
|
+
spec.version = "0.5.3"
|
|
9
9
|
spec.platform = Gem::Platform::RUBY
|
|
10
10
|
spec.date = Time.now.strftime('%Y-%m-%d')
|
|
11
11
|
spec.authors = ["Marcio Paiva Barbosa"]
|