spaacedout 1.2.0 → 1.2.5
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.md +5 -1
- data/_includes/footer.html +1 -1
- data/_includes/header.html +1 -1
- data/_includes/post/archive_post.html +1 -1
- data/_sass/core/notice.scss +8 -6
- data/assets/pages/tags.md +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: 04725d8a1bba4577c496eb6c5bf7536e80455b894c530566be7aa1f957c06736
|
|
4
|
+
data.tar.gz: 56cfb23ad94f68323a0621ee7aeb54e9a1f46ba248aaa5b5cb2e7e0445a4661b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f6aa620b6b31ad4d2099d437911407befd93b79b94d31cf252008356db2d497edb11db2b7f86cb57b9567183bcf4062c447422be732c28c6c10ea098664eafd0
|
|
7
|
+
data.tar.gz: c34f3ec29fdcbe553a15ef94aa5c30c28c20b3b82da708d5fb853c2a76bde4a6bd6835963a72cd3aa417e6211f5780b7a03a0cb1093f8c055211e6d185fa8cca
|
data/README.md
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
|
|
3
3
|
# Welcome to the SpaacedOut Jekyll Theme
|
|
4
4
|
Here's a new, responsive GitHub Pages and Jekyll theme called SpaacedOut. You can see the full details of this theme at
|
|
5
|
-
[jasongaylord/SpaacedOut](https://jasong.us/2ywUm3C). This theme is a mashup of the 2019 version of [JasonGaylord.com](https://jasong.us/2SHDm1C), the [Haacked theme](https://jasong.us/
|
|
5
|
+
[jasongaylord/SpaacedOut](https://jasong.us/2ywUm3C). This theme is a mashup of the 2019 version of [JasonGaylord.com](https://jasong.us/2SHDm1C), the [Haacked theme](https://jasong.us/2Zt4yaX), and the [plainwhite theme](https://jasong.us/2WxMoPJ).
|
|
6
6
|
|
|
7
7
|
This theme has several features enabled by default:
|
|
8
8
|
|
|
@@ -133,6 +133,10 @@ The theme is available as open source under the terms of the [MIT License](https
|
|
|
133
133
|
# Change Log
|
|
134
134
|
The changes made since version 1.x are documented below.
|
|
135
135
|
|
|
136
|
+
## Version 1.2.x - October 26, 2021
|
|
137
|
+
- BUG: Updated the tags and archive titles to "smartify" the quotes when used as a title
|
|
138
|
+
- FEATURE: Include the version in the footer
|
|
139
|
+
|
|
136
140
|
## Version 1.1.x - July 9, 2020
|
|
137
141
|
- FEATURE: Added the appropriate attributes to links for better accessibility and best practices for security. This will be reflected in a Google Lighthouse score.
|
|
138
142
|
- FEATURE: Updated the script that opens links in a new window to look for links that direct users to another area of a same page (`hash` link) so they don't open in a new window.
|
data/_includes/footer.html
CHANGED
|
@@ -1,3 +1,3 @@
|
|
|
1
1
|
<footer>
|
|
2
|
-
© 2020 {{ site.title }}. Theme from <a href="https://github.com/jasongaylord/SpaacedOut" target="_blank" title="Check out the SpaacedOut theme at GitHub" aria-label="Check out the SpaacedOut theme at GitHub">jasongaylord/SpaacedOut</a>.
|
|
2
|
+
© 2020 {{ site.title }}. Theme from <a href="https://github.com/jasongaylord/SpaacedOut" target="_blank" title="Check out the SpaacedOut theme at GitHub" aria-label="Check out the SpaacedOut theme at GitHub">jasongaylord/SpaacedOut</a>. Theme version 1.2.5.
|
|
3
3
|
</footer>
|
data/_includes/header.html
CHANGED
|
@@ -26,7 +26,7 @@
|
|
|
26
26
|
{% assign my_page = site.pages | where: "path", path | first %}
|
|
27
27
|
{% if my_page.title or my_page.nav_title %}
|
|
28
28
|
{% assign title = my_page.nav_title | default: my_page.title %}
|
|
29
|
-
<li><a class="nav-link" href="{{ my_page.url | relative_url }}" title="{{ title | escape }}" aria-label="{{ title | escape }}">{{ title | escape }}</a></li>
|
|
29
|
+
<li><a class="nav-link" href="{{ my_page.url | relative_url }}" title="{{ my_page.title | escape }}" aria-label="{{ my_page.title | escape }}" target="{{ my_page.url_target | escape }}">{{ title | escape }}</a></li>
|
|
30
30
|
{% endif %}
|
|
31
31
|
{% endfor %}
|
|
32
32
|
{% if site.contact.url %}
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
<ul>
|
|
11
11
|
{% endunless %}
|
|
12
12
|
<li>
|
|
13
|
-
<a href="{{ site.baseurl }}{{ post.url }}" title="{{post.title}}" aria-label="{{post.title}}">{{post.title}}</a>
|
|
13
|
+
<a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title | smartify }}" aria-label="{{ post.title | smartify }}">{{ post.title | smartify }}</a>
|
|
14
14
|
<div class="meta">
|
|
15
15
|
{% if site.comments.enabled and site.comments.show_count == true %}
|
|
16
16
|
{% include comments/comments_link.html %}
|
data/_sass/core/notice.scss
CHANGED
|
@@ -1,14 +1,16 @@
|
|
|
1
1
|
blockquote.notice {
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
&.info {
|
|
2
|
+
.info {
|
|
3
|
+
margin: 30px 0;
|
|
4
|
+
padding: 10px;
|
|
5
|
+
border-radius: 5px;
|
|
7
6
|
border: 1px solid $color-lightblue;
|
|
8
7
|
background-color: lighten($color-lightblue, 30%);
|
|
9
8
|
color: darken($color-lightblue, 30%);
|
|
10
9
|
}
|
|
11
|
-
|
|
10
|
+
.warning {
|
|
11
|
+
margin: 30px 0;
|
|
12
|
+
padding: 10px;
|
|
13
|
+
border-radius: 5px;
|
|
12
14
|
border: 1px solid $color-red;
|
|
13
15
|
background-color: lighten($color-red, 30%);
|
|
14
16
|
color: darken($color-red, 30%);
|
data/assets/pages/tags.md
CHANGED
|
@@ -40,7 +40,7 @@ include_nav: false
|
|
|
40
40
|
<ul>
|
|
41
41
|
{% for post in posts %}
|
|
42
42
|
<li>
|
|
43
|
-
<a href="{{ site.baseurl }}{{ post.url }}" title="{{post.title}}" aria-label="{{post.title}}">{{post.title}}</a>
|
|
43
|
+
<a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title | smartify }}" aria-label="{{ post.title | smartify }}">{{ post.title | smartify }}</a>
|
|
44
44
|
</li>
|
|
45
45
|
{% endfor %}
|
|
46
46
|
</ul>
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: spaacedout
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.2.
|
|
4
|
+
version: 1.2.5
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Jason Gaylord
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2021-
|
|
11
|
+
date: 2021-10-26 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|