jekyll-theme-endless 0.22.0 → 0.22.1
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/README.adoc +1 -1
- data/_config.yml +1 -1
- data/_includes/aside_info.html +2 -2
- data/_layouts/html.html +3 -3
- data/lib/jekyll-theme-endless/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2bf0edf38013ffa34b724a1046c264cbfa759a9fb31e76e3068e7edca0685718
|
4
|
+
data.tar.gz: 6b1eed3a9e25ce6d612aba9afbc5ee515182ca2a3e9683567c16727ee3389a18
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: af969c9e3f68aa43bccb44b1d6529b84955d7e359e2485677a8a21a0624f6497b53ba55eb8357cffc27484ed929ea811f1fd99aab7be0b0f29988dfb641b608f
|
7
|
+
data.tar.gz: 0b2ff329554f10fbe13e7b163d21de205f09e5ea785e14d2ca3d218f7986c45b3044686fcad740149dbf0cd0de69f568074b3816bce1b97da5aa105d55afdda9
|
data/README.adoc
CHANGED
@@ -553,7 +553,7 @@ It's best practice to wrap the content in an `<aside>` element.
|
|
553
553
|
|
554
554
|
`_includes/aside_info.html`::
|
555
555
|
|
556
|
-
The third of the four elements, typically providing additional information about the blog (e.g., a link to the RSS feed).
|
556
|
+
The third of the four elements, typically providing additional information about the blog (e.g., a link to the RSS/Atom feed).
|
557
557
|
This content is also ideally wrapped in an `<aside>` element.
|
558
558
|
|
559
559
|
|
data/_config.yml
CHANGED
@@ -76,7 +76,7 @@ plugins:
|
|
76
76
|
# Local plugins are configured via the `plugins_dir` setting,
|
77
77
|
# which in this project has been outsourced to `_configData.yml`.
|
78
78
|
#- jekyll-theme-endless
|
79
|
-
# Generate an RSS-file with the blog-content
|
79
|
+
# Generate an RSS/Atom-file with the blog-content
|
80
80
|
# See https://github.com/jekyll/jekyll-feed for configuration
|
81
81
|
- jekyll-feed
|
82
82
|
- asciidoctor-diagram
|
data/_includes/aside_info.html
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
{% comment %}
|
2
|
-
This file contains the third of the four elements, which provides additional information about the blog, such as a link to the RSS feed.
|
2
|
+
This file contains the third of the four elements, which provides additional information about the blog, such as a link to the RSS/Atom feed.
|
3
3
|
This content is also best organized within an <aside> element to keep it distinct from the main content.
|
4
4
|
{% endcomment %}
|
5
5
|
<aside>
|
6
6
|
<h3>InfoBox</h3>
|
7
7
|
<div class="col">
|
8
8
|
<p class="rss-subscribe">
|
9
|
-
You can also follow this blog <a href="{{ "/feed.xml" | relative_url }}" class="rss">via RSS</a>.
|
9
|
+
You can also follow this blog <a href="{{ "/feed.xml" | relative_url }}" class="rss">via RSS/Atom</a>.
|
10
10
|
</p>
|
11
11
|
</div>
|
12
12
|
</aside>
|
data/_layouts/html.html
CHANGED
@@ -45,7 +45,7 @@
|
|
45
45
|
{% if site.title %}
|
46
46
|
{% assign rss_title = site.title | strip_html %}
|
47
47
|
{% else %}
|
48
|
-
{% assign rss_title = "RSS Feed" %}
|
48
|
+
{% assign rss_title = "RSS/Atom Feed" %}
|
49
49
|
{% endif %}
|
50
50
|
|
51
51
|
{% if site.subtitle %}
|
@@ -55,8 +55,8 @@
|
|
55
55
|
{% if site.brand %}
|
56
56
|
{% assign rss_title = rss_title | append: " | " | append: site.brand | strip_html %}
|
57
57
|
{% endif %}
|
58
|
-
<!-- RSS Feed - This code adds a link to the RSS feed, enabling browsers and feed readers to detect and subscribe to site updates automatically.-->
|
59
|
-
<link rel="alternate" type="application/
|
58
|
+
<!-- RSS/Atom Feed - This code adds a link to the RSS/Atom feed, enabling browsers and feed readers to detect and subscribe to site updates automatically.-->
|
59
|
+
<link rel="alternate" type="application/atom+xml" title="{{ rss_title | escape_once }}" href="{{ '/feed.xml' | relative_url }}">
|
60
60
|
|
61
61
|
</head>
|
62
62
|
<body>
|