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.
- checksums.yaml +4 -4
- data/_config.yml +5 -5
- data/_data/internal-links.yml +16 -0
- data/_data/social-links.yml +3 -6
- data/_includes/about.html +3 -0
- data/_includes/header.html +0 -6
- data/_includes/intro.html +3 -5
- data/_includes/links-grid.html +13 -0
- data/_includes/links-line.html +12 -0
- data/_includes/sidebar.html +35 -0
- data/_includes/vendor-scripts.html +0 -1
- data/_layouts/about.html +18 -0
- data/_layouts/default.html +18 -18
- data/_layouts/under-construction.html +21 -0
- data/_sass/_about.scss +18 -0
- data/_sass/_base.scss +3 -8
- data/_sass/_bg.scss +1 -1
- data/_sass/_footer.scss +5 -3
- data/_sass/_header.scss +2 -10
- data/_sass/_intro.scss +52 -33
- data/_sass/_links-grid.scss +50 -0
- data/_sass/{_social-links.scss → _links-line.scss} +17 -16
- data/_sass/_sidebar.scss +105 -0
- data/_sass/_under-construction.scss +22 -0
- data/_sass/_vars.scss +8 -4
- data/_sass/main.scss +32 -5
- data/assets/css/about.css +1 -0
- data/assets/css/fontawesome.css +5 -5
- data/assets/css/main.css +1 -3
- data/assets/icons/favicon_io/android-chrome-192x192.png +0 -0
- data/assets/icons/favicon_io/android-chrome-512x512.png +0 -0
- data/assets/icons/favicon_io/apple-touch-icon.png +0 -0
- data/assets/icons/favicon_io/favicon-16x16.png +0 -0
- data/assets/icons/favicon_io/favicon-32x32.png +0 -0
- data/assets/icons/favicon_io/favicon.ico +0 -0
- data/assets/js/main.js +1 -1
- metadata +12 -5
- data/_includes/social-links.html +0 -5
- data/_sass/_particles.scss +0 -18
- 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.
|
|
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/
|
|
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/
|
|
82
|
-
- _sass/
|
|
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
|
data/_includes/social-links.html
DELETED
data/_sass/_particles.scss
DELETED
|
@@ -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
|
-
}
|