spaacedout 1.1.3 → 1.2.4

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 858552b25a1a720432ae2b1245e30b0483626d692dbdd49867c5b38c16ef0e7f
4
- data.tar.gz: c3f8c560a92c1721fa99baf2dbe1bd96b02d58ffe8d649019ae190c2a2eaa2de
3
+ metadata.gz: 749016e5ce558cfa1029fd5f5102925a9f27fc6fd125d6ac4f3bfaafb2f57535
4
+ data.tar.gz: f1c2657e70e13ac00ca750cf1967f591f041afedbf329c7e3432f794bc91dd9e
5
5
  SHA512:
6
- metadata.gz: 67fc3f00b24a7f3e34bde0d649b50c2159f22266a9feac3ecae77da38d6a6f48b623d167f93dc8df2e2fc951c85c5b029c040e7e8e1af74f9495b50d7e4d8fe4
7
- data.tar.gz: 044ca132c24699ec04bcf8ae2086da2c8296567cdf35212e2f9dd99ca6585e155499991b5cefab4492fd7f166a9292ee8c461b9205c74a2c4b71649fc8b8104b
6
+ metadata.gz: 5ccc7fd93bf6a096e5bdcc0a9e6d024dca6dccf0850a33cb9e2957637eb408d8389f45548189dd2e9326853452d390f2a69623cc33400e7d44df7e5c7b839e51
7
+ data.tar.gz: ca0e1b04e979a90f461e89b418049aac314c6e08212a31ad199868248533c5b2a2c31284930a936b69d666b798625a0d4e57568d23689e3d24a81a12efe0e88f
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/2SItEvN), and the [plainwhite theme](https://jasong.us/2WxMoPJ).
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,9 @@ 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 24, 2021
137
+ - BUG: Updated the tags and archive titles to "smartify" the quotes when used as a title
138
+
136
139
  ## Version 1.1.x - July 9, 2020
137
140
  - 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
141
  - 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.
@@ -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 %}
@@ -1,14 +1,16 @@
1
1
  blockquote.notice {
2
- margin: 30px 0;
3
- padding: 10px;
4
- border-radius: 5px;
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
- &.warning {
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.1.3
4
+ version: 1.2.4
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-09-03 00:00:00.000000000 Z
11
+ date: 2021-10-25 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -114,14 +114,14 @@ dependencies:
114
114
  requirements:
115
115
  - - "~>"
116
116
  - !ruby/object:Gem::Version
117
- version: 2.0.4
117
+ version: 2.2.10
118
118
  type: :development
119
119
  prerelease: false
120
120
  version_requirements: !ruby/object:Gem::Requirement
121
121
  requirements:
122
122
  - - "~>"
123
123
  - !ruby/object:Gem::Version
124
- version: 2.0.4
124
+ version: 2.2.10
125
125
  - !ruby/object:Gem::Dependency
126
126
  name: rake
127
127
  requirement: !ruby/object:Gem::Requirement