jekyll-theme-semantic2 0.0.7 → 0.0.8
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/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: 7aacd93dd70bd03c9e496362f2f098d76367de6c938111d9fc01cb38c53cbcfa
|
4
|
+
data.tar.gz: 6b050715e0fc9922978051f21e733b9b77b41aae4a32a0abf9c894d712cb2263
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e9785383c1efdb58c6b40d974264a867376c4ba13a84a60e8227e2ee6253795797b9b5cd19a1bf4bc2172603d3cbe5c309b3ac844b24ce46926ca8fda9f1cd09
|
7
|
+
data.tar.gz: 85fd4c3b5551d93cbe03708f58cbf5370d3bec93ea0a3ccf07d59ba204adfbef9f64d04e0f2aefa7456a760c8d3ad3f1aa68755f9c195ef1e43b65e419364ccf
|
data/_includes/post.html
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
<article itemscope itemtype="http://schema.org/BlogPosting">
|
2
2
|
<h1 class="ui header" 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 class="ui basic vertical segment" 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-semantic2
|
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
|