jekyll-theme-minimal-ryan 0.9.1 → 0.10.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 +17 -0
- data/_includes/footer.html +1 -1
- data/_includes/header.html +1 -1
- data/_layouts/home.html +2 -2
- metadata +1 -2
- data/_data/theme.yml +0 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0feea376cd7affecf9f97a9635305572e576eb6b236e169ff996db4c61f1250b
|
|
4
|
+
data.tar.gz: 903b873055ca6bafc956c73adf2ef2d476e9e8730d3ea8256996703aa4901374
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: a93d9d99d32b3334f15f0285251a1cc93cc630ef8351b2d494d542faaf4a24eb5bcb3a5ad0d9da4f6ccffc945761b8885482b2e9ca53a7619665820e7ef5bdbd
|
|
7
|
+
data.tar.gz: 5b2256275711dab372dd4f4a181e54e2329841a294617c91cce04ed7ac2a73ae288db4d627f4289030b4a86ce7aa47ec3170f381905a06384a381fd277d6f5db
|
data/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## 0.10.0 (2026-05-20)
|
|
2
|
+
|
|
3
|
+
### Feat
|
|
4
|
+
|
|
5
|
+
- improve readability
|
|
6
|
+
|
|
7
|
+
### Fix
|
|
8
|
+
|
|
9
|
+
- update Twitter link to x.com/sheppsryan
|
|
10
|
+
- make entire background primary color
|
|
11
|
+
|
|
12
|
+
### Refactor
|
|
13
|
+
|
|
14
|
+
- move theme customization from _data/theme.yml to _config.yml minimal_ryan namespace
|
|
15
|
+
- remove use of deprecated @import
|
|
16
|
+
- upgrade dependencies to latest versions
|
|
17
|
+
|
|
1
18
|
## 0.9.1 (2025-08-30)
|
|
2
19
|
|
|
3
20
|
### Fix
|
data/_includes/footer.html
CHANGED
data/_includes/header.html
CHANGED
data/_layouts/home.html
CHANGED
|
@@ -4,11 +4,11 @@ layout: default
|
|
|
4
4
|
|
|
5
5
|
<div id="home-page">
|
|
6
6
|
<div id="first-column">
|
|
7
|
-
<img src="{{ site.
|
|
7
|
+
<img src="{{ site.minimal_ryan.home.image.src }}">
|
|
8
8
|
</div>
|
|
9
9
|
<div id="second-column">
|
|
10
10
|
<div id="content-box">
|
|
11
|
-
<h1 id="home-title">{{ site.
|
|
11
|
+
<h1 id="home-title">{{ site.minimal_ryan.title }}</h1>
|
|
12
12
|
{{ content }}
|
|
13
13
|
</div>
|
|
14
14
|
</div>
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-minimal-ryan
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.
|
|
4
|
+
version: 0.10.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- ryanshepps
|
|
@@ -46,7 +46,6 @@ files:
|
|
|
46
46
|
- CHANGELOG.md
|
|
47
47
|
- LICENSE
|
|
48
48
|
- README.md
|
|
49
|
-
- _data/theme.yml
|
|
50
49
|
- _includes/footer.html
|
|
51
50
|
- _includes/head.html
|
|
52
51
|
- _includes/header.html
|
data/_data/theme.yml
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
title: Minimal Ryan
|
|
2
|
-
|
|
3
|
-
home:
|
|
4
|
-
image:
|
|
5
|
-
src: /assets/images/image1.jpg
|
|
6
|
-
|
|
7
|
-
footer:
|
|
8
|
-
contact:
|
|
9
|
-
- { title: Email, link: mailto:ryansheppardd@gmail.com }
|
|
10
|
-
- { title: LinkedIn, link: https://www.linkedin.com/in/ryansheppardd/ }
|
|
11
|
-
social-media:
|
|
12
|
-
- { title: Twitter, link: https://twitter.com/ryannsheppardd }
|
|
13
|
-
- { title: Instagram, link: https://www.instagram.com/ryannsheppardd/ }
|
|
14
|
-
other-links:
|
|
15
|
-
- { title: GitHub, link: https://github.com/ryanshepps }
|
|
16
|
-
- { title: DevPost, link: https://devpost.com/ryanshepps }
|