jekyll-theme-satellite 1.2.6 → 1.3.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.md +10 -4
- data/_includes/sidebar.html +1 -1
- data/_sass/sidebar.scss +6 -2
- data/_sass/toc.scss +5 -0
- 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: c826b4a31ce55c5053a53daa53386a18d17aac07dea70f9b9c2e2e7a064ce6bd
|
|
4
|
+
data.tar.gz: ca569e5d30b7ac98e8cbc0ae815c3391205a4aeac66d61724301988721708a95
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 166207e15f13296987e2b67b90da67095cf5e79e833f448c84eb2673f2cc770387d73f683b1120bde863de1cf0aa0bb6d0c25b57b43b360b3c6e6a8ebbf95108
|
|
7
|
+
data.tar.gz: 2d75ca0a6e03dab490a2baa68a013be7884d9a4af83314689b78fc12c43657fe5c9e059df8a402de0a88388a05c71199b590be2b10c26c4de517498fd95b626d
|
data/README.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
[](https://opensource.org/licenses/MIT)
|
|
3
3
|
[](https://jekyllrb.com/)
|
|
4
4
|
[](gem)
|
|
5
|
+
<a href="https://jekyll-themes.com/[GITHUB USER NAME]/[GITHUB REPOSITORY NAME]">
|
|
6
|
+
<img
|
|
7
|
+
src="https://img.shields.io/badge/featured%20on-JT-red.svg"
|
|
8
|
+
height="20"
|
|
9
|
+
alt="Jekyll Themes Shield"
|
|
10
|
+
/>
|
|
11
|
+
</a>
|
|
5
12
|
|
|
6
13
|
# Satellite🛰️ - Jekyll blog theme
|
|
7
14
|
An emotional and adorable blog theme powered by ***Jekyll***.
|
|
@@ -57,12 +64,11 @@ Create a clean site directory (Follow the **Instruction 1~4** described [here](h
|
|
|
57
64
|
The following materials are redundant, so remove them.
|
|
58
65
|
* index.markdown
|
|
59
66
|
* about.markdown
|
|
60
|
-
* 404.html
|
|
61
67
|
<br></br>
|
|
62
68
|
|
|
63
69
|
Then, add this line to your Jekyll site's `Gemfile`:
|
|
64
70
|
|
|
65
|
-
```
|
|
71
|
+
```bash
|
|
66
72
|
gem "jekyll-theme-satellite"
|
|
67
73
|
```
|
|
68
74
|
|
|
@@ -73,7 +79,7 @@ You need to replace the initial `_config.yml` file with the [prepared one](https
|
|
|
73
79
|
|
|
74
80
|
Now fill in the **site variable** such as blog name, profile image, and social accounts in `_config.yml`.
|
|
75
81
|
|
|
76
|
-
```
|
|
82
|
+
```yml
|
|
77
83
|
title: Example.com
|
|
78
84
|
description: "Satellite - jekyll blog theme"
|
|
79
85
|
logo_img: "/assets/img/favicon.webp"
|
|
@@ -122,4 +128,4 @@ If you would like to report a bug or request a new feature, please open [an issu
|
|
|
122
128
|
<br></br>
|
|
123
129
|
|
|
124
130
|
## License
|
|
125
|
-
© 2024 *Yankos*. This theme is available as open source under the terms of the [MIT License](https://opensource.org/license/mit/).
|
|
131
|
+
© 2024 *Yankos*. This theme is available as open source under the terms of the [MIT License](https://opensource.org/license/mit/).
|
data/_includes/sidebar.html
CHANGED
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
</a></li>
|
|
33
33
|
{% endif %}
|
|
34
34
|
{% if site.email %}
|
|
35
|
-
<li><a aria-label="My Email" href="{{ site.email }}">
|
|
35
|
+
<li><a aria-label="My Email" href="mailto:{{ site.email }}">
|
|
36
36
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512"><path d="M48 64C21.5 64 0 85.5 0 112c0 15.1 7.1 29.3 19.2 38.4L236.8 313.6c11.4 8.5 27 8.5 38.4 0L492.8 150.4c12.1-9.1 19.2-23.3 19.2-38.4c0-26.5-21.5-48-48-48H48zM0 176V384c0 35.3 28.7 64 64 64H448c35.3 0 64-28.7 64-64V176L294.4 339.2c-22.8 17.1-54 17.1-76.8 0L0 176z"/></svg>
|
|
37
37
|
</a></li>
|
|
38
38
|
{% endif %}
|
data/_sass/sidebar.scss
CHANGED
|
@@ -302,14 +302,18 @@
|
|
|
302
302
|
}
|
|
303
303
|
}
|
|
304
304
|
|
|
305
|
+
.sidebar-right{
|
|
306
|
+
display:flex;
|
|
307
|
+
height:100%;
|
|
308
|
+
margin-left:calc(var(--pagewidth-desktop) + #{$sidebarwd}/2);
|
|
309
|
+
}
|
|
310
|
+
|
|
305
311
|
}
|
|
306
312
|
|
|
307
313
|
@include mq(wide){
|
|
308
314
|
|
|
309
315
|
.sidebar-left{ width:calc((100vw - #{$contentwd})/2); }
|
|
310
316
|
.sidebar-right{
|
|
311
|
-
display:flex;
|
|
312
|
-
height:100%;
|
|
313
317
|
width:calc((100vw - #{$contentwd})/2);
|
|
314
318
|
margin-left:calc(#{$contentwd} + (100vw - #{$contentwd})/2);
|
|
315
319
|
}
|
data/_sass/toc.scss
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-satellite
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.
|
|
4
|
+
version: 1.3.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Yankos
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2024-
|
|
11
|
+
date: 2024-04-18 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|