jekyll-theme-semantic2 0.0.7 → 0.0.10
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 +3 -3
- data/_layouts/blog.html +1 -1
- data/_layouts/category.html +1 -1
- data/_layouts/default.html +1 -19
- data/_layouts/post.html +1 -1
- data/_layouts/tag.html +1 -1
- data/_plugins/category_filter.rb +4 -4
- data/_plugins/category_generator.rb +11 -8
- data/_plugins/tag_filter.rb +4 -4
- data/_plugins/tag_generator.rb +11 -8
- metadata +5 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 57deaccf631b9048c4137660b1e004b8bd01b46cbab82c17c89cf8ed9ccf73fe
|
4
|
+
data.tar.gz: 3ada62e3329a83574d1e5b55c956a1036a722998a4521f0156460b80ebcffa9a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 979eaf8847bc5fbf4340135044ae4087ff35abe5df7b44782db19145c52fa46d3474520573ffc61e4863327cfcc8bed3faa2fd8353c6995a3f1b505f083a4806
|
7
|
+
data.tar.gz: e33e66e71f7421323c496764a933f3537cc3c469d3b1b93fbd02bc15847123c3833f6adf021f0c7e172d8d9483c95085fd70eed4420a3942a52c1f1febfd7554
|
data/_includes/post.html
CHANGED
@@ -1,10 +1,10 @@
|
|
1
1
|
<article itemscope itemtype="http://schema.org/BlogPosting">
|
2
|
-
<h1 class="ui header" itemprop="headline"
|
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>
|
2
|
+
<h1 class="ui header" itemprop="headline">{{ include.post.title }}</h1>
|
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 }}
|
7
|
-
<p><a href="{{ post.url }}">Read more…</a></p>
|
7
|
+
<p><a href="{{ include.post.url | relative_url }}">Read more…</a></p>
|
8
8
|
{% else %}
|
9
9
|
{{ include.post.content | markdownify }}
|
10
10
|
{% endif %}
|
data/_layouts/blog.html
CHANGED
data/_layouts/category.html
CHANGED
@@ -8,7 +8,7 @@ type: category
|
|
8
8
|
<main>
|
9
9
|
<div class="ui text container">
|
10
10
|
{% for post in site.categories[page.category] %}
|
11
|
-
<div class="ui basic vertical segment">
|
11
|
+
<div class="ui padded basic vertical segment">
|
12
12
|
{% include post.html post=post %}
|
13
13
|
</div>
|
14
14
|
{% endfor %}
|
data/_layouts/default.html
CHANGED
@@ -8,24 +8,6 @@
|
|
8
8
|
<link href="{{ "/atom.xml" | relative_url }}" rel="alternate" type="application/atom+xml">
|
9
9
|
<link href="{{ "/rss.xml" | relative_url }}" rel="alternate" type="application/rss+xml">
|
10
10
|
<link href="https://cdn.jsdelivr.net/npm/semantic-ui@2/dist/semantic.min.css" crossorigin="anonymous" rel="stylesheet">
|
11
|
-
<style>
|
12
|
-
article > h1.ui.header a {
|
13
|
-
color: rgba(0, 0, 0, 0.87);
|
14
|
-
}
|
15
|
-
|
16
|
-
.ui.grid > .row:nth-child(3) {
|
17
|
-
margin-top: 3rem;
|
18
|
-
}
|
19
|
-
|
20
|
-
.ui.grid > .row:last-of-type {
|
21
|
-
margin-bottom: 3rem;
|
22
|
-
}
|
23
|
-
|
24
|
-
.ui.pagination.menu > .item > .icon {
|
25
|
-
margin: 0;
|
26
|
-
width: auto;
|
27
|
-
}
|
28
|
-
</style>
|
29
11
|
{% if site.author %}
|
30
12
|
<meta name="author" content="{{ site.author }}">
|
31
13
|
{% endif %}
|
@@ -35,7 +17,7 @@
|
|
35
17
|
</head>
|
36
18
|
<body>
|
37
19
|
<div class="pusher">
|
38
|
-
<div class="ui grid">
|
20
|
+
<div class="ui vertically padded grid">
|
39
21
|
{% include navigation.html %}
|
40
22
|
{{ content }}
|
41
23
|
</div>
|
data/_layouts/post.html
CHANGED
data/_layouts/tag.html
CHANGED
data/_plugins/category_filter.rb
CHANGED
@@ -2,11 +2,11 @@ module Jekyll
|
|
2
2
|
module CategoryFilter
|
3
3
|
def category_url(category)
|
4
4
|
site = @context.registers[:site]
|
5
|
-
if site.config[
|
6
|
-
"#{site.config[
|
5
|
+
if site.config["categories_dir"]
|
6
|
+
"#{site.config["url"]}/#{site.config["baseurl"]}/#{site.config["categories_dir"]}/#{category.tr(" ", "-")}/"
|
7
7
|
else
|
8
|
-
"#{site.config[
|
9
|
-
end
|
8
|
+
"#{site.config["url"]}/#{site.config["baseurl"]}/categories/#{category.tr(" ", "-")}/"
|
9
|
+
end.gsub(/\/\/+/).with_index { |_, i| i.zero? ? "//" : "/" }
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
@@ -4,12 +4,12 @@ module Jekyll
|
|
4
4
|
@site = site
|
5
5
|
@base = base
|
6
6
|
@dir = dir
|
7
|
-
@name =
|
7
|
+
@name = "index.html"
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
process(@name)
|
10
|
+
read_yaml(File.join(base, "_layouts"), "category.html")
|
11
|
+
data["category"] = category
|
12
|
+
data["title"] = "Posts in “#{category.capitalize}”"
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
@@ -17,9 +17,12 @@ module Jekyll
|
|
17
17
|
safe true
|
18
18
|
|
19
19
|
def generate(site)
|
20
|
-
if site.layouts.key?(
|
21
|
-
dir = site.config[
|
22
|
-
site.categories.keys.each
|
20
|
+
if site.layouts.key?("category")
|
21
|
+
dir = site.config["categories_dir"] || "categories"
|
22
|
+
site.categories.keys.each do |category|
|
23
|
+
page = CategoryPage.new(site, site.source, File.join(dir, category.tr(" ", "-")), category)
|
24
|
+
site.pages << page
|
25
|
+
end
|
23
26
|
end
|
24
27
|
end
|
25
28
|
end
|
data/_plugins/tag_filter.rb
CHANGED
@@ -2,11 +2,11 @@ module Jekyll
|
|
2
2
|
module TagFilter
|
3
3
|
def tag_url(tag)
|
4
4
|
site = @context.registers[:site]
|
5
|
-
if site.config[
|
6
|
-
"#{site.config[
|
5
|
+
if site.config["tags_dir"]
|
6
|
+
"#{site.config["url"]}/#{site.config["baseurl"]}/#{site.config["tags_dir"]}/#{tag.tr(" ", "-")}/"
|
7
7
|
else
|
8
|
-
"#{site.config[
|
9
|
-
end
|
8
|
+
"#{site.config["url"]}/#{site.config["baseurl"]}/tags/#{tag.tr(" ", "-")}/"
|
9
|
+
end.gsub(/\/\/+/).with_index { |_, i| i.zero? ? "//" : "/" }
|
10
10
|
end
|
11
11
|
end
|
12
12
|
end
|
data/_plugins/tag_generator.rb
CHANGED
@@ -4,12 +4,12 @@ module Jekyll
|
|
4
4
|
@site = site
|
5
5
|
@base = base
|
6
6
|
@dir = dir
|
7
|
-
@name =
|
7
|
+
@name = "index.html"
|
8
8
|
|
9
|
-
|
10
|
-
|
11
|
-
|
12
|
-
|
9
|
+
process(@name)
|
10
|
+
read_yaml(File.join(base, "_layouts"), "tag.html")
|
11
|
+
data["tag"] = tag
|
12
|
+
data["title"] = "Posts tagged with “#{tag}”"
|
13
13
|
end
|
14
14
|
end
|
15
15
|
|
@@ -17,9 +17,12 @@ module Jekyll
|
|
17
17
|
safe true
|
18
18
|
|
19
19
|
def generate(site)
|
20
|
-
if site.layouts.key?(
|
21
|
-
dir = site.config[
|
22
|
-
site.tags.keys.each
|
20
|
+
if site.layouts.key?("tag")
|
21
|
+
dir = site.config["tags_dir"] || "tags"
|
22
|
+
site.tags.keys.each do |tag|
|
23
|
+
page = TagPage.new(site, site.source, File.join(dir, tag.tr(" ", "-")), tag)
|
24
|
+
site.pages << page
|
25
|
+
end
|
23
26
|
end
|
24
27
|
end
|
25
28
|
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.10
|
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:
|
11
|
+
date: 2022-08-26 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - "~>"
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: '2.
|
19
|
+
version: '2.3'
|
20
20
|
type: :development
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - "~>"
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: '2.
|
26
|
+
version: '2.3'
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: rake
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|
@@ -138,7 +138,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
138
138
|
- !ruby/object:Gem::Version
|
139
139
|
version: '0'
|
140
140
|
requirements: []
|
141
|
-
rubygems_version: 3.0.3
|
141
|
+
rubygems_version: 3.0.3.1
|
142
142
|
signing_key:
|
143
143
|
specification_version: 4
|
144
144
|
summary: A Semantic UI -based Jekyll theme.
|