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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2384f9cd192a5ecdac2438adc1d0cf766239ae8c243307bf7aa7d481a2775453
4
- data.tar.gz: f892022f66ff5e7dd81163acfdd80d24bdefcd49aa8954aa48a3b1d35fcea81f
3
+ metadata.gz: 41fcee888c0a5df78b383063dfa169cd0d9e66c3e1a69c8a20830f06f557ab12
4
+ data.tar.gz: 8e60483b4a4ecc1b2c33a64bc75f2c4d836c83644facc74346be8eeed24faca3
5
5
  SHA512:
6
- metadata.gz: 3327802c31f76210cb70d62b2ac3ca0a6bab2a2977db43f2e55505ab866519dc09d2b14fdc882e818fa8d226b98a2fd44f2c04e10e39221fbb659ab7558abf56
7
- data.tar.gz: 27c0bc937b7f175d3c775362dc09085895436972223c02ce4cc3661678e9568d616e2dc3703c3ecfdaca25256ca775330661ac7b3751d3286134cb7e48ca7e4f
6
+ metadata.gz: 8d3e4f8e073af13657d458ec9b2c27eefb78a8f9572a65652d7ca3f89643f91deba8323cee8bbc259da272fe28e0260b15dbd06a59817302c2932f9b50b443e9
7
+ data.tar.gz: 1bb10beae9ad803c4867dedff233e8f0d9d2309f9d4572fdd492b45ca34760e16c7fbec8e342f9d666a9b675cc42fcc4e3f4759afd6d6e61096518414966ac24
data/_config.yml CHANGED
@@ -1,4 +1,6 @@
1
+ author: Ramon de C Valle
1
2
  baseurl: /jekyll-theme-semantic2
3
+ description: A Semantic UI -based Jekyll theme.
2
4
  excerpts: true
3
5
  exclude:
4
6
  - "*.gemspec"
@@ -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">
@@ -2,7 +2,11 @@ module Jekyll
2
2
  module CategoryFilter
3
3
  def category_url(category)
4
4
  site = @context.registers[:site]
5
- site.config['categories_dir'] ? "#{site.config['baseurl']}/#{site.config['categories_dir']}/#{category.tr(' ', '-')}/" : "#{site.config['baseurl']}/categories/#{category.tr(' ', '-')}/"
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
@@ -2,7 +2,11 @@ module Jekyll
2
2
  module TagFilter
3
3
  def tag_url(tag)
4
4
  site = @context.registers[:site]
5
- site.config['tags_dir'] ? "#{site.config['baseurl']}/#{site.config['tags_dir']}/#{tag.tr(' ', '-')}/" : "#{site.config['baseurl']}/tags/#{tag.tr(' ', '-')}/"
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>{{ "/" | absolute_url }}</id>
6
- <link href="{{ "/" | absolute_url }}"/>
5
+ <id>{{ site.url }}</id>
6
+ <link href="{{ site.url }}"/>
7
7
  <link href="{{ page.url | absolute_url }}" rel="self"/>
8
- <rights>{{ site.copyright }}</rights>
8
+ {% if site.copyright %}
9
+ <rights>{{ site.copyright }}</rights>
10
+ {% endif %}
9
11
  <subtitle>{{ site.description }}</subtitle>
10
- <title>{{ site.name }}</title>
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
- <updated>{{ post.date | date_to_xmlschema }}</updated>
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.name }}</title>
7
- <link>{{ "/" | absolute_url }}</link>
6
+ <title>{{ site.title }}</title>
7
+ <link>{{ site.url }}</link>
8
8
  <description>{{ site.description }}</description>
9
- <copyright>{{ site.copyright }}</copyright>
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.name }}</source>
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.5
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-01-21 00:00:00.000000000 Z
11
+ date: 2021-02-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler