jekyll-github-pages 0.1.1 → 0.1.3
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 +23 -0
- data/_layouts/default.html +14 -13
- data/lib/jekyll-github-pages.rb +11 -0
- metadata +22 -17
- data/_layouts/landing.html +0 -21
- /data/{_scss → _sass}/_about.scss +0 -0
- /data/{_scss → _sass}/_base.scss +0 -0
- /data/{_scss → _sass}/_bg.scss +0 -0
- /data/{_scss → _sass}/_footer.scss +0 -0
- /data/{_scss → _sass}/_header.scss +0 -0
- /data/{_scss → _sass}/_intro.scss +0 -0
- /data/{_scss → _sass}/_normalize.scss +0 -0
- /data/{_scss → _sass}/_particles.scss +0 -0
- /data/{_scss → _sass}/_social-links.scss +0 -0
- /data/{_scss → _sass}/_vars.scss +0 -0
- /data/{_scss → _sass}/main.scss +0 -0
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c841095bd035e7aab5b4415589891b52eea5734213f7bfa68f980c472604fd7b
|
|
4
|
+
data.tar.gz: 9a3a1b17762ae54296efb5b91965b8ee422c616a2cc69599cbc80510b1f77763
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 56d712c46775832981a2632ce5c9724e31a85aa05d60e3b7cd8917e117d6c16def1285cd6004093f86a854ef52ec70e67248ebe05c78aabedafb2fff4b19b6c9
|
|
7
|
+
data.tar.gz: 93cfc7b7879599cd82205fd92527c0ffbb18489afd70de42ce2e00d86599c7884176e5668424e0c5222cfbb1efe16b5673cda6a1b383ac843ed2925c87242903
|
data/_config.yml
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
meta:
|
|
2
|
+
title: franrose
|
|
3
|
+
description: Dynamic and customizable jekyll theme
|
|
4
|
+
|
|
5
|
+
user:
|
|
6
|
+
username: '<span style="color: #e9a467;">f</span>ran<span style="color: #de7873;">r</span>ose'
|
|
7
|
+
name: Mehdi Rafee
|
|
8
|
+
short-description: '<span style="color: #d1443d;">enthusiastic</span> • <span style="color: #e38b3d;">adventurous</span>'
|
|
9
|
+
title: programmer
|
|
10
|
+
description: >
|
|
11
|
+
Hi there, I'm a progammer based in Isfahan, Iran; passionate about
|
|
12
|
+
open-source software, systems programming, and tooling & tinkering.
|
|
13
|
+
Currently I'm working on my personal development ecosystem,
|
|
14
|
+
and brushing up on my web development skills.
|
|
15
|
+
<br>Anyhow, let's get going with the professional button-pressing, shall we?
|
|
16
|
+
|
|
17
|
+
footer:
|
|
18
|
+
quote: 'Never give up without a fight. <span style="color: #9e7b52;">&General Iroh</span>'
|
|
19
|
+
|
|
20
|
+
particles: true
|
|
21
|
+
theme: jekyll-github-pages
|
|
22
|
+
|
|
23
|
+
exclude: ['package.json', 'src', 'node_modules', 'vendor']
|
data/_layouts/default.html
CHANGED
|
@@ -2,19 +2,20 @@
|
|
|
2
2
|
<html lang="en">
|
|
3
3
|
{% include head.html %}
|
|
4
4
|
<body>
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
{% if site.particles %}
|
|
6
|
+
<div id="particles-js" aria-hidden="true"></div>
|
|
7
|
+
{% else %}
|
|
8
|
+
<div id="solid-bg" aria-hidden="true"></div>
|
|
9
|
+
{% endif %}
|
|
8
10
|
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
{% include post-scripts.html %}
|
|
11
|
+
<div class="site-wrapper">
|
|
12
|
+
{% include header.html %}
|
|
13
|
+
<main id="main" role="main" class="site-main">
|
|
14
|
+
{% include about.html %}
|
|
15
|
+
{{ content }}
|
|
16
|
+
</main>
|
|
17
|
+
{% include footer.html %}
|
|
18
|
+
</div>
|
|
19
|
+
{% include post-scripts.html %}
|
|
19
20
|
</body>
|
|
20
21
|
</html>
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# frozen_string_literal: true
|
|
2
|
+
|
|
3
|
+
require "jekyll"
|
|
4
|
+
require_relative "jekyll-github-pages/version"
|
|
5
|
+
|
|
6
|
+
# Keep top-level module under Jekyll so it's obvious this is a Jekyll theme helper namespace.
|
|
7
|
+
module Jekyll
|
|
8
|
+
module GithubPages
|
|
9
|
+
# any theme-specific ruby code (helpers, registrations, etc.) can go here
|
|
10
|
+
end
|
|
11
|
+
end
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
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.3
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Francis Rosinante
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2025-08-19 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: jekyll
|
|
@@ -15,14 +16,14 @@ dependencies:
|
|
|
15
16
|
requirements:
|
|
16
17
|
- - "~>"
|
|
17
18
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: '
|
|
19
|
+
version: '4.2'
|
|
19
20
|
type: :runtime
|
|
20
21
|
prerelease: false
|
|
21
22
|
version_requirements: !ruby/object:Gem::Requirement
|
|
22
23
|
requirements:
|
|
23
24
|
- - "~>"
|
|
24
25
|
- !ruby/object:Gem::Version
|
|
25
|
-
version: '
|
|
26
|
+
version: '4.2'
|
|
26
27
|
- !ruby/object:Gem::Dependency
|
|
27
28
|
name: bundler
|
|
28
29
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -51,6 +52,7 @@ dependencies:
|
|
|
51
52
|
- - "~>"
|
|
52
53
|
- !ruby/object:Gem::Version
|
|
53
54
|
version: '13.3'
|
|
55
|
+
description:
|
|
54
56
|
email:
|
|
55
57
|
- francis.rosinante@gmail.com
|
|
56
58
|
executables: []
|
|
@@ -59,6 +61,7 @@ extra_rdoc_files: []
|
|
|
59
61
|
files:
|
|
60
62
|
- LICENSE
|
|
61
63
|
- README.md
|
|
64
|
+
- _config.yml
|
|
62
65
|
- _data/social-links.yml
|
|
63
66
|
- _includes/about.html
|
|
64
67
|
- _includes/fonts.html
|
|
@@ -70,18 +73,17 @@ files:
|
|
|
70
73
|
- _includes/social-links.html
|
|
71
74
|
- _includes/vendor-scripts.html
|
|
72
75
|
- _layouts/default.html
|
|
73
|
-
-
|
|
74
|
-
-
|
|
75
|
-
-
|
|
76
|
-
-
|
|
77
|
-
-
|
|
78
|
-
-
|
|
79
|
-
-
|
|
80
|
-
-
|
|
81
|
-
-
|
|
82
|
-
-
|
|
83
|
-
-
|
|
84
|
-
- _scss/main.scss
|
|
76
|
+
- _sass/_about.scss
|
|
77
|
+
- _sass/_base.scss
|
|
78
|
+
- _sass/_bg.scss
|
|
79
|
+
- _sass/_footer.scss
|
|
80
|
+
- _sass/_header.scss
|
|
81
|
+
- _sass/_intro.scss
|
|
82
|
+
- _sass/_normalize.scss
|
|
83
|
+
- _sass/_particles.scss
|
|
84
|
+
- _sass/_social-links.scss
|
|
85
|
+
- _sass/_vars.scss
|
|
86
|
+
- _sass/main.scss
|
|
85
87
|
- assets/css/devicon.css
|
|
86
88
|
- assets/css/fontawesome.css
|
|
87
89
|
- assets/css/google-fonts.css
|
|
@@ -123,10 +125,12 @@ files:
|
|
|
123
125
|
- assets/js/main.js
|
|
124
126
|
- assets/js/vendor/particles.js
|
|
125
127
|
- assets/js/vendor/sweet-scroll.min.js
|
|
128
|
+
- lib/jekyll-github-pages.rb
|
|
126
129
|
homepage: https://github.com/itsfranrose/jekyll-github-pages
|
|
127
130
|
licenses:
|
|
128
131
|
- MIT
|
|
129
132
|
metadata: {}
|
|
133
|
+
post_install_message:
|
|
130
134
|
rdoc_options: []
|
|
131
135
|
require_paths:
|
|
132
136
|
- lib
|
|
@@ -141,7 +145,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
141
145
|
- !ruby/object:Gem::Version
|
|
142
146
|
version: '0'
|
|
143
147
|
requirements: []
|
|
144
|
-
rubygems_version: 3.
|
|
148
|
+
rubygems_version: 3.3.26
|
|
149
|
+
signing_key:
|
|
145
150
|
specification_version: 4
|
|
146
151
|
summary: This is a custom jekyll theme originally intended for my various github pages
|
|
147
152
|
use
|
data/_layouts/landing.html
DELETED
|
@@ -1,21 +0,0 @@
|
|
|
1
|
-
<!DOCTYPE html>
|
|
2
|
-
<html lang="en">
|
|
3
|
-
{% include head.html %}
|
|
4
|
-
<body>
|
|
5
|
-
{% if site.particles %}
|
|
6
|
-
<div id="particles-js" aria-hidden="true"></div>
|
|
7
|
-
{% else %}
|
|
8
|
-
<div id="solid-bg" aria-hidden="true"></div>
|
|
9
|
-
{% endif %}
|
|
10
|
-
|
|
11
|
-
<div class="site-wrapper">
|
|
12
|
-
{% include header.html %}
|
|
13
|
-
<main id="main" role="main" class="site-main">
|
|
14
|
-
{% include about.html %}
|
|
15
|
-
{{ content }}
|
|
16
|
-
</main>
|
|
17
|
-
{% include footer.html %}
|
|
18
|
-
</div>
|
|
19
|
-
{% include post-scripts.html %}
|
|
20
|
-
</body>
|
|
21
|
-
</html>
|
|
File without changes
|
/data/{_scss → _sass}/_base.scss
RENAMED
|
File without changes
|
/data/{_scss → _sass}/_bg.scss
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
/data/{_scss → _sass}/_vars.scss
RENAMED
|
File without changes
|
/data/{_scss → _sass}/main.scss
RENAMED
|
File without changes
|