jekyll-theme-semantic2 0.0.5 → 0.0.6
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/_config.yml +2 -0
- data/_layouts/default.html +6 -0
- data/_plugins/category_filter.rb +5 -1
- data/_plugins/tag_filter.rb +5 -1
- data/atom.xml +11 -5
- data/rss.xml +6 -4
- 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: 41fcee888c0a5df78b383063dfa169cd0d9e66c3e1a69c8a20830f06f557ab12
|
4
|
+
data.tar.gz: 8e60483b4a4ecc1b2c33a64bc75f2c4d836c83644facc74346be8eeed24faca3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8d3e4f8e073af13657d458ec9b2c27eefb78a8f9572a65652d7ca3f89643f91deba8323cee8bbc259da272fe28e0260b15dbd06a59817302c2932f9b50b443e9
|
7
|
+
data.tar.gz: 1bb10beae9ad803c4867dedff233e8f0d9d2309f9d4572fdd492b45ca34760e16c7fbec8e342f9d666a9b675cc42fcc4e3f4759afd6d6e61096518414966ac24
|
data/_config.yml
CHANGED
data/_layouts/default.html
CHANGED
@@ -26,6 +26,12 @@
|
|
26
26
|
width: auto;
|
27
27
|
}
|
28
28
|
</style>
|
29
|
+
{% if site.author %}
|
30
|
+
<meta name="author" content="{{ site.author }}">
|
31
|
+
{% endif %}
|
32
|
+
{% if site.description %}
|
33
|
+
<meta name="description" content="{{ site.description }}">
|
34
|
+
{% endif %}
|
29
35
|
</head>
|
30
36
|
<body>
|
31
37
|
<div class="pusher">
|
data/_plugins/category_filter.rb
CHANGED
@@ -2,7 +2,11 @@ module Jekyll
|
|
2
2
|
module CategoryFilter
|
3
3
|
def category_url(category)
|
4
4
|
site = @context.registers[:site]
|
5
|
-
|
5
|
+
if site.config['categories_dir']
|
6
|
+
"#{site.config['url']}/#{site.config['baseurl']}/#{site.config['categories_dir']}/#{category.tr(' ', '-')}/"
|
7
|
+
else
|
8
|
+
"#{site.config['url']}/#{site.config['baseurl']}/categories/#{category.tr(' ', '-')}/"
|
9
|
+
end
|
6
10
|
end
|
7
11
|
end
|
8
12
|
end
|
data/_plugins/tag_filter.rb
CHANGED
@@ -2,7 +2,11 @@ module Jekyll
|
|
2
2
|
module TagFilter
|
3
3
|
def tag_url(tag)
|
4
4
|
site = @context.registers[:site]
|
5
|
-
|
5
|
+
if site.config['tags_dir']
|
6
|
+
"#{site.config['url']}/#{site.config['baseurl']}/#{site.config['tags_dir']}/#{category.tr(' ', '-')}/"
|
7
|
+
else
|
8
|
+
"#{site.config['url']}/#{site.config['baseurl']}/tags/#{category.tr(' ', '-')}/"
|
9
|
+
end
|
6
10
|
end
|
7
11
|
end
|
8
12
|
end
|
data/atom.xml
CHANGED
@@ -2,12 +2,14 @@
|
|
2
2
|
---
|
3
3
|
<?xml version="1.0" encoding="utf-8"?>
|
4
4
|
<feed xmlns="http://www.w3.org/2005/Atom">
|
5
|
-
<id>{{
|
6
|
-
<link href="{{
|
5
|
+
<id>{{ site.url }}</id>
|
6
|
+
<link href="{{ site.url }}"/>
|
7
7
|
<link href="{{ page.url | absolute_url }}" rel="self"/>
|
8
|
-
|
8
|
+
{% if site.copyright %}
|
9
|
+
<rights>{{ site.copyright }}</rights>
|
10
|
+
{% endif %}
|
9
11
|
<subtitle>{{ site.description }}</subtitle>
|
10
|
-
<title>{{ site.
|
12
|
+
<title>{{ site.title }}</title>
|
11
13
|
<updated>{{ site.posts.first.date | date_to_xmlschema }}</updated>
|
12
14
|
{% for post in site.posts %}
|
13
15
|
<entry>
|
@@ -24,7 +26,11 @@
|
|
24
26
|
<link href="{{ post.url | absolute_url }}"/>
|
25
27
|
<published>{{ post.date | date_to_xmlschema }}</published>
|
26
28
|
<title>{{ post.title }}</title>
|
27
|
-
|
29
|
+
{% if post.updated %}
|
30
|
+
<updated>{{ post.updated | date_to_xmlschema }}</updated>
|
31
|
+
{% else %}
|
32
|
+
<updated>{{ post.date | date_to_xmlschema }}</updated>
|
33
|
+
{% endif %}
|
28
34
|
</entry>
|
29
35
|
{% endfor %}
|
30
36
|
</feed>
|
data/rss.xml
CHANGED
@@ -3,10 +3,12 @@
|
|
3
3
|
<?xml version="1.0" encoding="utf-8"?>
|
4
4
|
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
|
5
5
|
<channel>
|
6
|
-
<title>{{ site.
|
7
|
-
<link>{{
|
6
|
+
<title>{{ site.title }}</title>
|
7
|
+
<link>{{ site.url }}</link>
|
8
8
|
<description>{{ site.description }}</description>
|
9
|
-
|
9
|
+
{% if site.copyright %}
|
10
|
+
<copyright>{{ site.copyright }}</copyright>
|
11
|
+
{% endif %}
|
10
12
|
<pubDate>{{ site.posts.first.date | date_to_rfc822 }}</pubDate>
|
11
13
|
<lastBuildDate>{{ site.posts.first.date | date_to_rfc822 }}</lastBuildDate>
|
12
14
|
<atom:link href="{{ page.url | absolute_url }}" rel="self"/>
|
@@ -23,7 +25,7 @@
|
|
23
25
|
<comments>{{ post.url | absolute_url }}#disqus_thread</comments>
|
24
26
|
<guid>{{ post.url | absolute_url }}</guid>
|
25
27
|
<pubDate>{{ post.date | date_to_rfc822 }}</pubDate>
|
26
|
-
<source url="{{ page.url | absolute_url }}">{{ site.
|
28
|
+
<source url="{{ page.url | absolute_url }}">{{ site.title }}</source>
|
27
29
|
</item>
|
28
30
|
{% endfor %}
|
29
31
|
</channel>
|
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.6
|
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-02-02 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: bundler
|