lone-wolf-theme 1.1.1 → 1.2.0
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/CHANGELOG.md +8 -0
- data/_includes/header.html +1 -1
- data/_layouts/post.html +11 -11
- data/assets/js/main.min.js +2 -2
- 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: 25c9669f43f787bac4d8d523518e3a3dc5e28357f80a1049256c887237022f55
|
|
4
|
+
data.tar.gz: 62be1e391fd93042fb292328aa0201b8cf6c0e34ec151b6b94d6ce9f0c4da764
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 6627a60e6b3cdcaf8556279dfc4a4606c2c1b7192b15bf93ed1fe2f4f747c394b64435b6d865b275ea65e08a0edf0125c69a4887be19c6ea24fd66b18eb07d64
|
|
7
|
+
data.tar.gz: f9277b1aa7c9d61daef95e84523139a49cfbfba65307d7514f5d43bd253cfc9b29ce1bc0f06293467a45eae88b830c23d2ab832f9c7cf77d015a9453e565e935
|
data/CHANGELOG.md
CHANGED
|
@@ -17,6 +17,14 @@ Refer [keepachangelog](https://keepachangelog.com/) for guidelines.
|
|
|
17
17
|
Not implemented in any particular order, depends on feasibility and\
|
|
18
18
|
proof-of-concept (POC).
|
|
19
19
|
|
|
20
|
+
## [v1.2.0](https://github.com/manid2/lone-wolf-theme/releases/tag/v1.2.0)
|
|
21
|
+
|
|
22
|
+
Optimized for SEO with `jekyll-seo-tag` properties, refactored code to:
|
|
23
|
+
|
|
24
|
+
* Add site logo to any page (default site logo) for SEO and social share
|
|
25
|
+
* Align theme config properties to jekyll-seo-tag plugin properties for\
|
|
26
|
+
better SEO results.
|
|
27
|
+
|
|
20
28
|
## [v1.1.1](https://github.com/manid2/lone-wolf-theme/releases/tag/v1.1.1)
|
|
21
29
|
|
|
22
30
|
* Enhance icons and logo to make it more visible and recognizable.
|
data/_includes/header.html
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
<nav class="container">
|
|
3
3
|
<!-- site home -->
|
|
4
4
|
<a class="navbar-brand" href="{{ '/' | absolute_url }}">
|
|
5
|
-
<img src="{{
|
|
5
|
+
<img src="{{ site.logo | relative_url }}" alt="{{ site.title }} logo" height="32" width="32">
|
|
6
6
|
</a>
|
|
7
7
|
<button class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarColor01"
|
|
8
8
|
aria-controls="navbarColor01" aria-expanded="false" aria-label="Toggle navigation">
|
data/_layouts/post.html
CHANGED
|
@@ -2,17 +2,17 @@
|
|
|
2
2
|
layout: default
|
|
3
3
|
---
|
|
4
4
|
|
|
5
|
-
{% if page.
|
|
6
|
-
{% capture
|
|
7
|
-
|
|
5
|
+
{% if page.image %}
|
|
6
|
+
{% capture page_image %}
|
|
7
|
+
{{ page.image | relative_url | default: '' }}
|
|
8
8
|
{% endcapture %}
|
|
9
9
|
|
|
10
|
-
{% capture
|
|
11
|
-
|
|
10
|
+
{% capture page_image_alt %}
|
|
11
|
+
{{ page.image_alt | default: 'page image default alt' }}
|
|
12
12
|
{% endcapture %}
|
|
13
13
|
|
|
14
|
-
{% capture
|
|
15
|
-
|
|
14
|
+
{% capture page_image_caption %}
|
|
15
|
+
{{ page.image_caption | default: '' }}
|
|
16
16
|
{% endcapture %}
|
|
17
17
|
{% endif %}
|
|
18
18
|
|
|
@@ -28,12 +28,12 @@ layout: default
|
|
|
28
28
|
<section class="container mt-3 blog-post">
|
|
29
29
|
<div class="row">
|
|
30
30
|
<div class="col-md-8 pb-3">
|
|
31
|
-
{% if page.show_hero %}
|
|
31
|
+
{% if page.show_hero and page_image %}
|
|
32
32
|
<!-- post hero -->
|
|
33
33
|
<figure class="figure">
|
|
34
|
-
<img class="img-fluid shadow-sm rounded mb-2 blog-post-hero-img" src="{{
|
|
35
|
-
alt="{{
|
|
36
|
-
<figcaption class="figure-caption text-center">{{
|
|
34
|
+
<img class="img-fluid shadow-sm rounded mb-2 blog-post-hero-img" src="{{ page_image | strip }}"
|
|
35
|
+
alt="{{ page_image_alt | strip }}">
|
|
36
|
+
<figcaption class="figure-caption text-center">{{ page_image_caption | strip }}</figcaption>
|
|
37
37
|
</figure>
|
|
38
38
|
{% endif %}
|
|
39
39
|
<!-- post title -->
|
data/assets/js/main.min.js
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
/*!
|
|
2
|
-
* lone-wolf-theme v1.
|
|
2
|
+
* lone-wolf-theme v1.2.0 by Mani Kumar for Jekyll.
|
|
3
3
|
* https://manid2.github.io/lone-wolf-theme/
|
|
4
4
|
* @manid2
|
|
5
5
|
* Licensed under MIT
|
|
6
|
-
* Copyright Mani Kumar,
|
|
6
|
+
* Copyright Mani Kumar, 2021
|
|
7
7
|
*/
|
|
8
8
|
$(document).ready(function(){function n(){$(".page-content").css("padding-bottom",$(".page-footer").outerHeight(!0))}var t=!1;n(),$(window).resize(function(){t=!0}),setInterval(function(){t&&(t=!1,n())},250)});
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: lone-wolf-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.2.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Mani Kumar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-01-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|