spaacedout 1.2.6 → 1.3.1

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: d84ba8db7cfbed393f768dde6953027754fc1ae853e67c56cf57f5d17de7f502
4
- data.tar.gz: ad09177f4c8d6412948fccef371fb1fa9cf58fa0e5b155b4aa4987b66a3d1ef6
3
+ metadata.gz: 4ed54f69b55999ae2c12ba493486d3a0cb1e123e9062fb8d50570466cd345d90
4
+ data.tar.gz: f42133519931fce449ad02569cf61c4c5230e27834f8656893b10d77b5957cdb
5
5
  SHA512:
6
- metadata.gz: 99ca80d91b32713cbcd530931e41daa949a32b01fcb498e32a411be5e52cf1c05d595ff4989626ae46394932d3730e0a2e52705ebf7fd41d8ed0ee484ac4477d
7
- data.tar.gz: 699170a6b94455f0343fa6559965bb6c5b7b16267b84e241892909729c667ecfe79020788d1395f1eb1caedafdc6472fa6242fa83129096518bbba5948160889
6
+ metadata.gz: b972c207f57442209522cc195234b8594f9b9a10f1c0ad4c34932a7fe6ad2d1676da44c48f2c594de18c12de107ee75c6a619e540b7504442a770b1574ed3055
7
+ data.tar.gz: a28b3ddf90282d5180594691fdfa835c931efb5590d518e736d05766aed351223376f5b9fdafcff94d72ec79125c22949678b26f3bd972471a6470e1c16087e4
data/README.md CHANGED
@@ -87,6 +87,7 @@ The files mentioned below can be found in the `_includes` directory. Includes ar
87
87
  - `twitter.html` - If the Twitter social icon is defined, this places a Twitter card on the site.
88
88
  - `header.html` - This is the header section of the site and includes the title, avatar, menu, and social icons (if present).
89
89
  - `pagination.html` - This handles the pagination of posts.
90
+ - `scripts.html` - This contains scripts you'd like to place at the bottom of the page below the `body` tag.
90
91
  - `social-links.html` - This handles the display of the social links.
91
92
  - `_includes\comments` directory:
92
93
  - `comments.html` - Used to reference the comment block at the bottom of content. If you want to expand beyond disqus, this is where you could do it.
@@ -133,6 +134,9 @@ The theme is available as open source under the terms of the [MIT License](https
133
134
  # Change Log
134
135
  The changes made since version 1.x are documented below.
135
136
 
137
+ ## Version 1.3.x - February 2, 2022
138
+ - FEATURE: Added a new `scripts.html` include to include files at the bottom right below the ending `body` tag.
139
+
136
140
  ## Version 1.2.x - October 26, 2021
137
141
  - BUG: Updated the tags and archive titles to "smartify" the quotes when used as a title
138
142
  - FEATURE: Include the version in the footer
File without changes
@@ -3,6 +3,7 @@
3
3
  {% if site.social.github %}<li><a href="https://github.com/{{ site.social.github | cgi_escape | escape }}" target="_blank" title="GitHub" aria-label="GitHub" rel="noopener"><i class="fab fa-github"></i></a></li>{% endif %}
4
4
  {% if site.social.instagram %}<li><a href="https://instagram.com/{{ site.social.instagram | cgi_escape | escape }}" target="_blank" title="Instagram" aria-label="Instagram" rel="noopener"><i class="fab fa-instagram"></i></a></li>{% endif %}
5
5
  {% if site.social.linkedin %}<li><a href="https://www.linkedin.com/in/{{ site.social.linkedin | cgi_escape | escape }}" target="_blank" title="LinkedIn" aria-label="LinkedIn" rel="noopener"><i class="fab fa-linkedin"></i></a></li>{% endif %}
6
+ {% if site.social.mastodon %}<li><a href="{{ site.social.mastodon | cgi_escape | escape }}" target="_blank" title="Mastodon" aria-label="Mastodon" rel="noopener"><i class="fab fa-mastodon"></i></a></li>{% endif %}
6
7
  {% if site.social.pinterest %}<li><a href="https://www.pinterest.com/{{ site.social.pinterest | cgi_escape | escape }}" target="_blank" title="Pinterest" aria-label="Pinterest" rel="noopener"><i class="fab fa-pinterest"></i></a></li>{% endif %}
7
8
  {% if site.social.stackoverflow %}<li><a href="https://stackoverflow.com/users/{{ site.social.stackoverflow | cgi_escape | escape }}/" target="_blank" title="Stack Overflow" aria-label="Stack Overflow" rel="noopener"><i class="fab fa-stack-overflow"></i></a></li>{% endif %}
8
9
  {% if site.social.twitter %}<li><a href="https://twitter.com/{{ site.social.twitter | cgi_escape | escape }}" target="_blank" title="Twitter" aria-label="Twitter"><i class="fab fa-twitter" rel="noopener"></i></a></li>{% endif %}
@@ -0,0 +1 @@
1
+ v1.3.0
@@ -10,5 +10,6 @@
10
10
  </div>
11
11
  {% include footer.html %}
12
12
  </main>
13
+ {% include scripts.html %}
13
14
  </body>
14
15
  </html>
data/_layouts/home.html CHANGED
@@ -14,7 +14,7 @@ layout: default
14
14
  {% for post in paginator.posts %}
15
15
  {% unless post.redirect %}
16
16
  <header class="post-header">
17
- <h1 class="post-title p-name" itemprop="name headline"><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title | escape }}" aria-label="{{ post.title | escape }}">{{ post.title | escape }}</a></h1>
17
+ <h3 class="post-title p-name" itemprop="name headline"><a href="{{ site.baseurl }}{{ post.url }}" title="{{ post.title | escape }}" aria-label="{{ post.title | escape }}">{{ post.title | escape }}</a></h3>
18
18
  {% include post/meta.html %}
19
19
  </header>
20
20
 
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.6
4
+ version: 1.3.1
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-10-27 00:00:00.000000000 Z
11
+ date: 2023-02-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: jekyll
@@ -165,7 +165,9 @@ files:
165
165
  - _includes/post/edit.html
166
166
  - _includes/post/meta.html
167
167
  - _includes/post/tags.html
168
+ - _includes/scripts.html
168
169
  - _includes/social-links.html
170
+ - _includes/version.html
169
171
  - _includes/warning-notice.html
170
172
  - _layouts/default.html
171
173
  - _layouts/home.html