jekyll-theme-bootstrap4 0.0.7 → 0.0.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/_includes/post.html +1 -1
- data/_plugins/category_filter.rb +1 -1
- data/_plugins/tag_filter.rb +1 -1
- 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: 79252f8939c15a946acf5052e841b3f8097d552dab737a3fae8c985645c8a1a4
|
4
|
+
data.tar.gz: a34b3e4102e5d146d24eb6d1f33186db17d10e8302ae8e44973cfe5b2b6bf521
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2c6d0d474c24d4a18e34c50d49b13c7309fee7169ddb59cb6940fed7feb16c7037b2c383be91c490a12ce46b16c24a08185388e15a8ef453370693549af29c3e
|
7
|
+
data.tar.gz: 961f6c5aa7c32a3285591c3d17173183e75ffb26ce0b7313526764c26400e44cee37a61c8105c92affe63d3abb49f68449b854da7d16474b9e918e522a51a724
|
data/_includes/post.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<article itemscope itemtype="http://schema.org/BlogPosting">
|
2
2
|
<h1 itemprop="headline"><a href="{{ include.post.url | relative_url }}">{{ include.post.title }}</a></h1>
|
3
|
-
<p>{% if include.post.author %}By <span itemprop="author">{{ include.post.author }}</span> on {% endif %}<time itemprop="datePublished" datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: "%B %-d, %Y" }}</time>{% if include.post.updated %}. Last updated on <time itemprop="dateModified" datetime="{{ include.post.updated | date_to_xmlschema }}">{{ include.post.updated | date: "%B %-d, %Y" }}</time>{% endif %}{% if include.post.comments %}. <a href="{{ include.post.url | relative_url }}#disqus_thread" data-disqus-identifier="{{ include.post.url | relative_url }}"></a>{% endif %}</p>
|
3
|
+
<p itemprop="description">{% if include.post.author %}By <span itemprop="author">{{ include.post.author }}</span> on {% endif %}<time itemprop="datePublished" datetime="{{ include.post.date | date_to_xmlschema }}">{{ include.post.date | date: "%B %-d, %Y" }}</time>{% if include.post.updated %}. Last updated on <time itemprop="dateModified" datetime="{{ include.post.updated | date_to_xmlschema }}">{{ include.post.updated | date: "%B %-d, %Y" }}</time>{% endif %}{% if include.post.comments %}. <a href="{{ include.post.url | relative_url }}#disqus_thread" data-disqus-identifier="{{ include.post.url | relative_url }}"></a>{% endif %}</p>
|
4
4
|
<div itemprop="articleBody">
|
5
5
|
{% if page.type == "home" and site.excerpts %}
|
6
6
|
{{ include.post.excerpt | markdownify }}
|
data/_plugins/category_filter.rb
CHANGED
@@ -6,7 +6,7 @@ module Jekyll
|
|
6
6
|
"#{site.config['url']}/#{site.config['baseurl']}/#{site.config['categories_dir']}/#{category.tr(' ', '-')}/"
|
7
7
|
else
|
8
8
|
"#{site.config['url']}/#{site.config['baseurl']}/categories/#{category.tr(' ', '-')}/"
|
9
|
-
end
|
9
|
+
end.gsub(/\/\/+/).with_index { |_, i| i.zero? ? '//' : '/' }
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
data/_plugins/tag_filter.rb
CHANGED
@@ -6,7 +6,7 @@ module Jekyll
|
|
6
6
|
"#{site.config['url']}/#{site.config['baseurl']}/#{site.config['tags_dir']}/#{tag.tr(' ', '-')}/"
|
7
7
|
else
|
8
8
|
"#{site.config['url']}/#{site.config['baseurl']}/tags/#{tag.tr(' ', '-')}/"
|
9
|
-
end
|
9
|
+
end.gsub(/\/\/+/).with_index { |_, i| i.zero? ? '//' : '/' }
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: jekyll-theme-bootstrap4
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 0.0.
|
4
|
+
version: 0.0.8
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Ramon de C Valle
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2021-
|
11
|
+
date: 2021-03-23 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|