jekyll-github-pages 0.1.8 → 0.1.9

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.
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-github-pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.8
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francis Rosinante
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-08-22 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: jekyll
@@ -52,7 +51,6 @@ dependencies:
52
51
  - - "~>"
53
52
  - !ruby/object:Gem::Version
54
53
  version: '13.3'
55
- description:
56
54
  email:
57
55
  - francis.rosinante@gmail.com
58
56
  executables: []
@@ -62,25 +60,36 @@ files:
62
60
  - LICENSE
63
61
  - README.md
64
62
  - _config.yml
63
+ - _data/internal-links.yml
65
64
  - _data/social-links.yml
65
+ - _includes/about.html
66
66
  - _includes/fonts.html
67
67
  - _includes/footer.html
68
68
  - _includes/head.html
69
69
  - _includes/header.html
70
70
  - _includes/intro.html
71
+ - _includes/links-grid.html
72
+ - _includes/links-line.html
71
73
  - _includes/post-scripts.html
72
- - _includes/social-links.html
74
+ - _includes/sidebar.html
73
75
  - _includes/vendor-scripts.html
76
+ - _layouts/about.html
74
77
  - _layouts/default.html
78
+ - _layouts/under-construction.html
79
+ - _sass/_about.scss
75
80
  - _sass/_base.scss
76
81
  - _sass/_bg.scss
77
82
  - _sass/_footer.scss
78
83
  - _sass/_header.scss
79
84
  - _sass/_intro.scss
85
+ - _sass/_links-grid.scss
86
+ - _sass/_links-line.scss
80
87
  - _sass/_normalize.scss
81
- - _sass/_social-links.scss
88
+ - _sass/_sidebar.scss
89
+ - _sass/_under-construction.scss
82
90
  - _sass/_vars.scss
83
91
  - _sass/main.scss
92
+ - assets/css/about.css
84
93
  - assets/css/devicon.css
85
94
  - assets/css/fontawesome.css
86
95
  - assets/css/google-fonts.css
@@ -126,7 +135,6 @@ homepage: https://github.com/itsfranrose/jekyll-github-pages
126
135
  licenses:
127
136
  - MIT
128
137
  metadata: {}
129
- post_install_message:
130
138
  rdoc_options: []
131
139
  require_paths:
132
140
  - lib
@@ -141,8 +149,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
141
149
  - !ruby/object:Gem::Version
142
150
  version: '0'
143
151
  requirements: []
144
- rubygems_version: 3.3.26
145
- signing_key:
152
+ rubygems_version: 3.6.7
146
153
  specification_version: 4
147
154
  summary: This is a custom jekyll theme originally intended for my various github pages
148
155
  use
@@ -1,5 +0,0 @@
1
- <div class="social-links">
2
- {% for item in site.data.social-links %}
3
- <a aria-label="{{ item.label }}" target="_blank" href="{{ item.url }}"><i class="icon {{ item.icon }}" aria-hidden="true"></i></a>
4
- {% endfor %}
5
- </div>