jekyll-github-pages 0.1.7 → 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.
Files changed (40) hide show
  1. checksums.yaml +4 -4
  2. data/_config.yml +5 -5
  3. data/_data/internal-links.yml +16 -0
  4. data/_data/social-links.yml +3 -6
  5. data/_includes/about.html +3 -0
  6. data/_includes/header.html +0 -6
  7. data/_includes/intro.html +3 -5
  8. data/_includes/links-grid.html +13 -0
  9. data/_includes/links-line.html +12 -0
  10. data/_includes/sidebar.html +35 -0
  11. data/_includes/vendor-scripts.html +0 -1
  12. data/_layouts/about.html +18 -0
  13. data/_layouts/default.html +18 -18
  14. data/_layouts/under-construction.html +21 -0
  15. data/_sass/_about.scss +18 -0
  16. data/_sass/_base.scss +3 -8
  17. data/_sass/_bg.scss +1 -1
  18. data/_sass/_footer.scss +5 -3
  19. data/_sass/_header.scss +2 -10
  20. data/_sass/_intro.scss +52 -33
  21. data/_sass/_links-grid.scss +50 -0
  22. data/_sass/{_social-links.scss → _links-line.scss} +17 -16
  23. data/_sass/_sidebar.scss +105 -0
  24. data/_sass/_under-construction.scss +22 -0
  25. data/_sass/_vars.scss +8 -4
  26. data/_sass/main.scss +32 -5
  27. data/assets/css/about.css +1 -0
  28. data/assets/css/fontawesome.css +5 -5
  29. data/assets/css/main.css +1 -3
  30. data/assets/icons/favicon_io/android-chrome-192x192.png +0 -0
  31. data/assets/icons/favicon_io/android-chrome-512x512.png +0 -0
  32. data/assets/icons/favicon_io/apple-touch-icon.png +0 -0
  33. data/assets/icons/favicon_io/favicon-16x16.png +0 -0
  34. data/assets/icons/favicon_io/favicon-32x32.png +0 -0
  35. data/assets/icons/favicon_io/favicon.ico +0 -0
  36. data/assets/js/main.js +1 -1
  37. metadata +12 -5
  38. data/_includes/social-links.html +0 -5
  39. data/_sass/_particles.scss +0 -18
  40. data/assets/js/vendor/particles.js +0 -1541
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: jekyll-github-pages
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.1.7
4
+ version: 0.1.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - Francis Rosinante
@@ -60,6 +60,7 @@ files:
60
60
  - LICENSE
61
61
  - README.md
62
62
  - _config.yml
63
+ - _data/internal-links.yml
63
64
  - _data/social-links.yml
64
65
  - _includes/about.html
65
66
  - _includes/fonts.html
@@ -67,21 +68,28 @@ files:
67
68
  - _includes/head.html
68
69
  - _includes/header.html
69
70
  - _includes/intro.html
71
+ - _includes/links-grid.html
72
+ - _includes/links-line.html
70
73
  - _includes/post-scripts.html
71
- - _includes/social-links.html
74
+ - _includes/sidebar.html
72
75
  - _includes/vendor-scripts.html
76
+ - _layouts/about.html
73
77
  - _layouts/default.html
78
+ - _layouts/under-construction.html
74
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/_particles.scss
82
- - _sass/_social-links.scss
88
+ - _sass/_sidebar.scss
89
+ - _sass/_under-construction.scss
83
90
  - _sass/_vars.scss
84
91
  - _sass/main.scss
92
+ - assets/css/about.css
85
93
  - assets/css/devicon.css
86
94
  - assets/css/fontawesome.css
87
95
  - assets/css/google-fonts.css
@@ -121,7 +129,6 @@ files:
121
129
  - assets/icons/favicon_io/favicon.ico
122
130
  - assets/icons/favicon_io/site.webmanifest
123
131
  - assets/js/main.js
124
- - assets/js/vendor/particles.js
125
132
  - assets/js/vendor/sweet-scroll.min.js
126
133
  - lib/jekyll-github-pages.rb
127
134
  homepage: https://github.com/itsfranrose/jekyll-github-pages
@@ -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>
@@ -1,18 +0,0 @@
1
- /* particles background: fixed full-bleed, sits behind content */
2
- #particles-js {
3
- position: fixed;
4
- inset: 0; /* top/right/bottom/left:0 */
5
- width: 100%;
6
- height: 100%;
7
- z-index: 0; /* background layer */
8
- pointer-events: none; /* allow clicks through */
9
-
10
- /* fallback background color (var from _vars.scss or _base) */
11
- background: $main;
12
- background-repeat: no-repeat;
13
- background-size: cover;
14
-
15
- /* improve painting isolation */
16
- contain: paint; /* isolates painting to this element in supporting browsers */
17
- -webkit-transform: translateZ(0); /* hint to compositor (may help in some UAs) */
18
- }