jekyll-project-stack-portfolio 0.1.2
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 +7 -0
- data/LICENSE +674 -0
- data/README.md +121 -0
- data/_includes/components/sidebar/cd.svg +55 -0
- data/_includes/components/sidebar/footer.html +49 -0
- data/_includes/components/sidebar/menu_icon.svg +11 -0
- data/_includes/components/sidebar/noteback.png +0 -0
- data/_includes/components/sidebar/notebook.svg +38 -0
- data/_includes/components/sidebar/project-stack.html +14 -0
- data/_includes/components/sidebar/shelf.html +5 -0
- data/_includes/components/sidebar/sidebar.html +83 -0
- data/_includes/components/sidebar/tape.svg +30 -0
- data/_includes/components/sidebar/theme_toggle_icon.svg +14 -0
- data/_includes/content-top.html +0 -0
- data/_includes/footer-right.html +0 -0
- data/_includes/page_hero.html +0 -0
- data/_layouts/default.html +33 -0
- data/_layouts/page.html +21 -0
- data/_layouts/project.html +19 -0
- data/_plugins/stack_row.rb +134 -0
- data/_sass/_base.scss +152 -0
- data/_sass/_layout.scss +746 -0
- data/_sass/_stack-presets.custom.scss +38 -0
- data/_sass/_stack-presets.scss +30 -0
- data/_sass/_variables.scss +146 -0
- data/assets/css/main.scss +7 -0
- data/assets/project_media/big-texture/death.jpg +0 -0
- data/assets/project_media/big-texture/gallery1/6e45aa_2d63c32a00ed4ab49590e74545dfe0bd~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery1/6e45aa_3ce67d3715f6488ca748d87d8b973281~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery1/6e45aa_5fd34f6dae054cf384c34a462df487b6~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery1/6e45aa_6b21e564fc7e4130b320f7cebc97590f~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery1/6e45aa_7a23e2fb6bc8469382f7415958f4b2ff~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_182bb86e17d14a02b13b09c065698ad5~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_29d1730d24804e4ea0cba6174da2ff41~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_46c6f5f1ec3747fa80fe0ed6fc44e593~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_49faf78a26424cd598df86ed195be94e~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_54222db8edf44b07a2fd7d02bd562620~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_54ebf8bc0e404ac1a7a092752d6450a3~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_69a17c7f86fa4466a014d60023a33e84~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_a09cce390fb2418a94321c6a08a0ab8d~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_a6570c26358d4589adda437790eeb13d~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_cd25051953bf4336af52073532315d2f~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_eea363e1a8204dbabdf409d04aeaeab4~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_f98381967c8943d7a78018deadc5f6f4~mv2 (1).jpg +0 -0
- data/assets/project_media/big-texture/gallery2/6e45aa_ff278e4dbe5749aab8c44ee3a089e466~mv2 (1).jpg +0 -0
- data/assets/project_media/updated-albums/hero_vid.mp4 +0 -0
- data/assets/project_media/zombie-film/image.png +0 -0
- data/assets/project_media/zombie-film/script.fountain +26 -0
- data/assets/site_media/darkwall.jpg +0 -0
- data/assets/site_media/favicon.png +0 -0
- data/assets/site_media/lightwall.png +0 -0
- data/assets/site_media/noteback.png +0 -0
- data/assets/site_media/play_vid.mp4 +0 -0
- data/assets/site_media/shelf.png +0 -0
- data/lib/jekyll-project-stack-portfolio.rb +7 -0
- data/lib/project-stack-portfolio/version.rb +5 -0
- metadata +155 -0
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
// Consumer override hook.
|
|
2
|
+
//
|
|
3
|
+
// In a site using this theme gem, add `_sass/_stack-presets.custom.scss`
|
|
4
|
+
// to extend or override the default stack preset classes without copying
|
|
5
|
+
// the entire `_stack-presets.scss` file.
|
|
6
|
+
.redtape {
|
|
7
|
+
--tab_unlocked: 0;
|
|
8
|
+
--color1: #be2c2c;
|
|
9
|
+
--color6: #be2c2c;
|
|
10
|
+
--color2: #ead4d4;
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
--text1: "VCR";
|
|
14
|
+
--text1_color: #ead4d4;
|
|
15
|
+
--text1_size: 10px;
|
|
16
|
+
|
|
17
|
+
--text2: "CASSETTE";
|
|
18
|
+
--text2_color: #be2c2c;
|
|
19
|
+
--text2_size: 8px;
|
|
20
|
+
|
|
21
|
+
--text6: "HI-DEF";
|
|
22
|
+
--text6_color: #ebf3dd;
|
|
23
|
+
--text6_size: 11px;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.bluecd {
|
|
27
|
+
--tab_unlocked: 0;
|
|
28
|
+
--color1: #28319c;
|
|
29
|
+
--color2: #28319c;
|
|
30
|
+
|
|
31
|
+
--text1: "60MIN";
|
|
32
|
+
--text1_color: #ffffff;
|
|
33
|
+
--text1_size: 13px;
|
|
34
|
+
|
|
35
|
+
--text2: "EMI";
|
|
36
|
+
--text2_color: #ffffff;
|
|
37
|
+
--text2_size: 14px;
|
|
38
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
// Stack style and color customization.
|
|
2
|
+
/*
|
|
3
|
+
Name styles as a single word like .tape1
|
|
4
|
+
In the project .md file set the stack_style to that value (no .) `stack_style: tape1`
|
|
5
|
+
Tape color vars map to the VHS label bars from left to right.
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
*/
|
|
9
|
+
.tape {
|
|
10
|
+
--tab_unlocked: 1; // 0 or 1 to set whether the VHS lock tab is removed
|
|
11
|
+
--color1: #305198;
|
|
12
|
+
--color2: #305198;
|
|
13
|
+
--color3: #305198;
|
|
14
|
+
--color4: #305198;
|
|
15
|
+
--color5: #305198;
|
|
16
|
+
|
|
17
|
+
--color6: #305198
|
|
18
|
+
;
|
|
19
|
+
}
|
|
20
|
+
|
|
21
|
+
.notebook {
|
|
22
|
+
--notebook-color: #c74719;
|
|
23
|
+
--label-color: #ffa008;
|
|
24
|
+
}
|
|
25
|
+
|
|
26
|
+
.cd {
|
|
27
|
+
--color1: #5036f5;
|
|
28
|
+
--color2: #12176a;
|
|
29
|
+
--label-color: #f7f0e5;
|
|
30
|
+
}
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
// ===========================
|
|
2
|
+
// VARIABLES
|
|
3
|
+
// ===========================
|
|
4
|
+
|
|
5
|
+
:root {
|
|
6
|
+
color-scheme: light;
|
|
7
|
+
--bg-wallpaper: url("../site_media/lightwall.png");
|
|
8
|
+
|
|
9
|
+
// Light mode defaults
|
|
10
|
+
--bg-deep: #f4f6fb;
|
|
11
|
+
--bg-mid: #e8edf7;
|
|
12
|
+
--bg-card: #ffffff;
|
|
13
|
+
--bg-card-hover: #f7f9ff;
|
|
14
|
+
|
|
15
|
+
--accent-purple: #7a4eb6;
|
|
16
|
+
--accent-teal: #1f8f87;
|
|
17
|
+
--accent-pink: #d94b80;
|
|
18
|
+
--accent-yellow: #b38300;
|
|
19
|
+
|
|
20
|
+
--text-primary: #1d2030;
|
|
21
|
+
--text-secondary: #4a4f67;
|
|
22
|
+
--text-muted: #747a96;
|
|
23
|
+
|
|
24
|
+
--border-color: #d2d9ea;
|
|
25
|
+
|
|
26
|
+
--sidebar-bg: rgba(244, 246, 251, 0.88);
|
|
27
|
+
--row-even-bg: rgba(29, 32, 48, 0.03);
|
|
28
|
+
--selection-bg: rgba(122, 78, 182, 0.25);
|
|
29
|
+
|
|
30
|
+
--accent-purple-hover: #8b62c4;
|
|
31
|
+
--accent-purple-soft: rgba(122, 78, 182, 0.24);
|
|
32
|
+
--accent-teal-soft: rgba(31, 143, 135, 0.14);
|
|
33
|
+
|
|
34
|
+
--glow-purple: 0 0 20px rgba(122, 78, 182, 0.2);
|
|
35
|
+
--glow-teal: 0 0 20px rgba(31, 143, 135, 0.18);
|
|
36
|
+
--shadow-card: 0 4px 24px rgba(24, 31, 60, 0.14);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
:root[data-theme="light"] {
|
|
40
|
+
color-scheme: light;
|
|
41
|
+
}
|
|
42
|
+
|
|
43
|
+
:root[data-theme="dark"] {
|
|
44
|
+
color-scheme: dark;
|
|
45
|
+
--bg-wallpaper: url("../site_media/darkwall.jpg");
|
|
46
|
+
|
|
47
|
+
--bg-deep: #0d0d1a;
|
|
48
|
+
--bg-mid: #12122b;
|
|
49
|
+
--bg-card: #1a1a35;
|
|
50
|
+
--bg-card-hover: #20203f;
|
|
51
|
+
|
|
52
|
+
|
|
53
|
+
--accent-purple: #b57bee;
|
|
54
|
+
--accent-teal: #4ecdc4;
|
|
55
|
+
--accent-pink: #ff6b9d;
|
|
56
|
+
--accent-yellow: #ffd166;
|
|
57
|
+
|
|
58
|
+
--text-primary: #e8e8f0;
|
|
59
|
+
--text-secondary: #9898b8;
|
|
60
|
+
--text-muted: #5a5a7a;
|
|
61
|
+
|
|
62
|
+
--border-color: #2a2a4a;
|
|
63
|
+
|
|
64
|
+
--sidebar-bg: rgba(13, 13, 26, 0.85);
|
|
65
|
+
--row-even-bg: rgba(255, 255, 255, 0.02);
|
|
66
|
+
--selection-bg: rgba(181, 123, 238, 0.3);
|
|
67
|
+
|
|
68
|
+
--accent-purple-hover: #c692f1;
|
|
69
|
+
--accent-purple-soft: rgba(181, 123, 238, 0.4);
|
|
70
|
+
--accent-teal-soft: rgba(78, 205, 196, 0.1);
|
|
71
|
+
|
|
72
|
+
--glow-purple: 0 0 20px rgba(181, 123, 238, 0.25);
|
|
73
|
+
--glow-teal: 0 0 20px rgba(78, 205, 196, 0.25);
|
|
74
|
+
--shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
// Colors
|
|
80
|
+
$bg-deep: var(--bg-deep);
|
|
81
|
+
$bg-mid: var(--bg-mid);
|
|
82
|
+
$bg-card: var(--bg-card);
|
|
83
|
+
$bg-card-hover: var(--bg-card-hover);
|
|
84
|
+
|
|
85
|
+
$accent-purple: var(--accent-purple);
|
|
86
|
+
$accent-teal: var(--accent-teal);
|
|
87
|
+
$accent-pink: var(--accent-pink);
|
|
88
|
+
$accent-yellow: var(--accent-yellow);
|
|
89
|
+
|
|
90
|
+
$text-primary: var(--text-primary);
|
|
91
|
+
$text-secondary: var(--text-secondary);
|
|
92
|
+
$text-muted: var(--text-muted);
|
|
93
|
+
|
|
94
|
+
$border-color: var(--border-color);
|
|
95
|
+
|
|
96
|
+
// Themed utility colors
|
|
97
|
+
$sidebar-bg: var(--sidebar-bg);
|
|
98
|
+
$row-even-bg: var(--row-even-bg);
|
|
99
|
+
$selection-bg: var(--selection-bg);
|
|
100
|
+
$accent-purple-hover: var(--accent-purple-hover);
|
|
101
|
+
$accent-purple-soft: var(--accent-purple-soft);
|
|
102
|
+
$accent-teal-soft: var(--accent-teal-soft);
|
|
103
|
+
|
|
104
|
+
// Shadows / Glows
|
|
105
|
+
$glow-purple: var(--glow-purple);
|
|
106
|
+
$glow-teal: var(--glow-teal);
|
|
107
|
+
$shadow-card: var(--shadow-card);
|
|
108
|
+
|
|
109
|
+
// Typography
|
|
110
|
+
$font-mono: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
|
|
111
|
+
$font-body: 'Inter', system-ui, -apple-system, sans-serif;
|
|
112
|
+
$font-display: 'Inter', system-ui, -apple-system, sans-serif;
|
|
113
|
+
|
|
114
|
+
$font-size-base: 1rem;
|
|
115
|
+
$font-size-sm: 0.875rem;
|
|
116
|
+
$font-size-lg: 1.125rem;
|
|
117
|
+
$font-size-xl: 1.5rem;
|
|
118
|
+
$font-size-2xl: 2rem;
|
|
119
|
+
$font-size-3xl: 2.75rem;
|
|
120
|
+
|
|
121
|
+
$line-height-base: 1.7;
|
|
122
|
+
|
|
123
|
+
// Spacing
|
|
124
|
+
$spacing-xs: 0.25rem;
|
|
125
|
+
$spacing-sm: 0.5rem;
|
|
126
|
+
$spacing-md: 1rem;
|
|
127
|
+
$spacing-lg: 1.5rem;
|
|
128
|
+
$spacing-xl: 2rem;
|
|
129
|
+
$spacing-2xl: 3rem;
|
|
130
|
+
$spacing-3xl: 5rem;
|
|
131
|
+
|
|
132
|
+
// Layout
|
|
133
|
+
$max-width: 1000px;
|
|
134
|
+
$sidebar-width: 500px;
|
|
135
|
+
|
|
136
|
+
// Borders / Radius
|
|
137
|
+
$radius-sm: 4px;
|
|
138
|
+
$radius-md: 8px;
|
|
139
|
+
$radius-lg: 16px;
|
|
140
|
+
$radius-pill: 999px;
|
|
141
|
+
|
|
142
|
+
// Transitions
|
|
143
|
+
$transition-fast: 150ms ease;
|
|
144
|
+
$transition-base: 250ms ease;
|
|
145
|
+
$transition-slow: 400ms ease;
|
|
146
|
+
|
|
Binary file
|
data/assets/project_media/big-texture/gallery1/6e45aa_2d63c32a00ed4ab49590e74545dfe0bd~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery1/6e45aa_3ce67d3715f6488ca748d87d8b973281~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery1/6e45aa_5fd34f6dae054cf384c34a462df487b6~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery1/6e45aa_6b21e564fc7e4130b320f7cebc97590f~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery1/6e45aa_7a23e2fb6bc8469382f7415958f4b2ff~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_182bb86e17d14a02b13b09c065698ad5~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_29d1730d24804e4ea0cba6174da2ff41~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_46c6f5f1ec3747fa80fe0ed6fc44e593~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_49faf78a26424cd598df86ed195be94e~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_54222db8edf44b07a2fd7d02bd562620~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_54ebf8bc0e404ac1a7a092752d6450a3~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_69a17c7f86fa4466a014d60023a33e84~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_a09cce390fb2418a94321c6a08a0ab8d~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_a6570c26358d4589adda437790eeb13d~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_cd25051953bf4336af52073532315d2f~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_eea363e1a8204dbabdf409d04aeaeab4~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_f98381967c8943d7a78018deadc5f6f4~mv2 (1).jpg
ADDED
|
Binary file
|
data/assets/project_media/big-texture/gallery2/6e45aa_ff278e4dbe5749aab8c44ee3a089e466~mv2 (1).jpg
ADDED
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,26 @@
|
|
|
1
|
+
EXT. ROOFTOP - NIGHT
|
|
2
|
+
|
|
3
|
+
SARAH sprints across the gravel. Behind her, FOOTSTEPS.
|
|
4
|
+
|
|
5
|
+
She reaches the edge. Looks down. **Ten stories.**
|
|
6
|
+
|
|
7
|
+
SARAH
|
|
8
|
+
(to herself)
|
|
9
|
+
Don't think. Just jump.
|
|
10
|
+
|
|
11
|
+
She backs up. Runs. LEAPS--
|
|
12
|
+
|
|
13
|
+
CUT TO:
|
|
14
|
+
|
|
15
|
+
EXT. ADJACENT ROOFTOP - CONTINUOUS
|
|
16
|
+
|
|
17
|
+
Sarah CRASHES onto the next building, rolls, keeps running.
|
|
18
|
+
|
|
19
|
+
PURSUER (O.S.)
|
|
20
|
+
You can't run forever!
|
|
21
|
+
|
|
22
|
+
SARAH
|
|
23
|
+
(over her shoulder)
|
|
24
|
+
Watch me.
|
|
25
|
+
|
|
26
|
+
SMASH CUT TO:
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
metadata
ADDED
|
@@ -0,0 +1,155 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: jekyll-project-stack-portfolio
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.1.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Alastair King
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: jekyll
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - ">="
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '4.0'
|
|
19
|
+
- - "<"
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: '5.0'
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - ">="
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '4.0'
|
|
29
|
+
- - "<"
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: '5.0'
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: jekyll-seo-tag
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - ">="
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '2.8'
|
|
39
|
+
- - "<"
|
|
40
|
+
- !ruby/object:Gem::Version
|
|
41
|
+
version: '3.0'
|
|
42
|
+
type: :runtime
|
|
43
|
+
prerelease: false
|
|
44
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
45
|
+
requirements:
|
|
46
|
+
- - ">="
|
|
47
|
+
- !ruby/object:Gem::Version
|
|
48
|
+
version: '2.8'
|
|
49
|
+
- - "<"
|
|
50
|
+
- !ruby/object:Gem::Version
|
|
51
|
+
version: '3.0'
|
|
52
|
+
description: Provides layouts, includes, styles, assets for a project portfolio theme.
|
|
53
|
+
email:
|
|
54
|
+
- ali@kinginterweb.com
|
|
55
|
+
executables: []
|
|
56
|
+
extensions: []
|
|
57
|
+
extra_rdoc_files: []
|
|
58
|
+
files:
|
|
59
|
+
- LICENSE
|
|
60
|
+
- README.md
|
|
61
|
+
- _includes/components/sidebar/cd.svg
|
|
62
|
+
- _includes/components/sidebar/footer.html
|
|
63
|
+
- _includes/components/sidebar/menu_icon.svg
|
|
64
|
+
- _includes/components/sidebar/noteback.png
|
|
65
|
+
- _includes/components/sidebar/notebook.svg
|
|
66
|
+
- _includes/components/sidebar/project-stack.html
|
|
67
|
+
- _includes/components/sidebar/shelf.html
|
|
68
|
+
- _includes/components/sidebar/sidebar.html
|
|
69
|
+
- _includes/components/sidebar/tape.svg
|
|
70
|
+
- _includes/components/sidebar/theme_toggle_icon.svg
|
|
71
|
+
- _includes/content-top.html
|
|
72
|
+
- _includes/footer-right.html
|
|
73
|
+
- _includes/page_hero.html
|
|
74
|
+
- _layouts/default.html
|
|
75
|
+
- _layouts/page.html
|
|
76
|
+
- _layouts/project.html
|
|
77
|
+
- _plugins/stack_row.rb
|
|
78
|
+
- _sass/_base.scss
|
|
79
|
+
- _sass/_layout.scss
|
|
80
|
+
- _sass/_stack-presets.custom.scss
|
|
81
|
+
- _sass/_stack-presets.scss
|
|
82
|
+
- _sass/_variables.scss
|
|
83
|
+
- assets/css/main.scss
|
|
84
|
+
- assets/project_media/big-texture/death.jpg
|
|
85
|
+
- assets/project_media/big-texture/gallery1/6e45aa_2d63c32a00ed4ab49590e74545dfe0bd~mv2
|
|
86
|
+
(1).jpg
|
|
87
|
+
- assets/project_media/big-texture/gallery1/6e45aa_3ce67d3715f6488ca748d87d8b973281~mv2
|
|
88
|
+
(1).jpg
|
|
89
|
+
- assets/project_media/big-texture/gallery1/6e45aa_5fd34f6dae054cf384c34a462df487b6~mv2
|
|
90
|
+
(1).jpg
|
|
91
|
+
- assets/project_media/big-texture/gallery1/6e45aa_6b21e564fc7e4130b320f7cebc97590f~mv2
|
|
92
|
+
(1).jpg
|
|
93
|
+
- assets/project_media/big-texture/gallery1/6e45aa_7a23e2fb6bc8469382f7415958f4b2ff~mv2
|
|
94
|
+
(1).jpg
|
|
95
|
+
- assets/project_media/big-texture/gallery2/6e45aa_182bb86e17d14a02b13b09c065698ad5~mv2
|
|
96
|
+
(1).jpg
|
|
97
|
+
- assets/project_media/big-texture/gallery2/6e45aa_29d1730d24804e4ea0cba6174da2ff41~mv2
|
|
98
|
+
(1).jpg
|
|
99
|
+
- assets/project_media/big-texture/gallery2/6e45aa_46c6f5f1ec3747fa80fe0ed6fc44e593~mv2
|
|
100
|
+
(1).jpg
|
|
101
|
+
- assets/project_media/big-texture/gallery2/6e45aa_49faf78a26424cd598df86ed195be94e~mv2
|
|
102
|
+
(1).jpg
|
|
103
|
+
- assets/project_media/big-texture/gallery2/6e45aa_54222db8edf44b07a2fd7d02bd562620~mv2
|
|
104
|
+
(1).jpg
|
|
105
|
+
- assets/project_media/big-texture/gallery2/6e45aa_54ebf8bc0e404ac1a7a092752d6450a3~mv2
|
|
106
|
+
(1).jpg
|
|
107
|
+
- assets/project_media/big-texture/gallery2/6e45aa_69a17c7f86fa4466a014d60023a33e84~mv2
|
|
108
|
+
(1).jpg
|
|
109
|
+
- assets/project_media/big-texture/gallery2/6e45aa_a09cce390fb2418a94321c6a08a0ab8d~mv2
|
|
110
|
+
(1).jpg
|
|
111
|
+
- assets/project_media/big-texture/gallery2/6e45aa_a6570c26358d4589adda437790eeb13d~mv2
|
|
112
|
+
(1).jpg
|
|
113
|
+
- assets/project_media/big-texture/gallery2/6e45aa_cd25051953bf4336af52073532315d2f~mv2
|
|
114
|
+
(1).jpg
|
|
115
|
+
- assets/project_media/big-texture/gallery2/6e45aa_eea363e1a8204dbabdf409d04aeaeab4~mv2
|
|
116
|
+
(1).jpg
|
|
117
|
+
- assets/project_media/big-texture/gallery2/6e45aa_f98381967c8943d7a78018deadc5f6f4~mv2
|
|
118
|
+
(1).jpg
|
|
119
|
+
- assets/project_media/big-texture/gallery2/6e45aa_ff278e4dbe5749aab8c44ee3a089e466~mv2
|
|
120
|
+
(1).jpg
|
|
121
|
+
- assets/project_media/updated-albums/hero_vid.mp4
|
|
122
|
+
- assets/project_media/zombie-film/image.png
|
|
123
|
+
- assets/project_media/zombie-film/script.fountain
|
|
124
|
+
- assets/site_media/darkwall.jpg
|
|
125
|
+
- assets/site_media/favicon.png
|
|
126
|
+
- assets/site_media/lightwall.png
|
|
127
|
+
- assets/site_media/noteback.png
|
|
128
|
+
- assets/site_media/play_vid.mp4
|
|
129
|
+
- assets/site_media/shelf.png
|
|
130
|
+
- lib/jekyll-project-stack-portfolio.rb
|
|
131
|
+
- lib/project-stack-portfolio/version.rb
|
|
132
|
+
homepage: https://example.com
|
|
133
|
+
licenses:
|
|
134
|
+
- GPL-3.0
|
|
135
|
+
metadata:
|
|
136
|
+
homepage_uri: https://example.com
|
|
137
|
+
source_code_uri: https://example.com
|
|
138
|
+
rdoc_options: []
|
|
139
|
+
require_paths:
|
|
140
|
+
- lib
|
|
141
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
142
|
+
requirements:
|
|
143
|
+
- - ">="
|
|
144
|
+
- !ruby/object:Gem::Version
|
|
145
|
+
version: '2.7'
|
|
146
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
147
|
+
requirements:
|
|
148
|
+
- - ">="
|
|
149
|
+
- !ruby/object:Gem::Version
|
|
150
|
+
version: '0'
|
|
151
|
+
requirements: []
|
|
152
|
+
rubygems_version: 3.6.9
|
|
153
|
+
specification_version: 4
|
|
154
|
+
summary: Retro portfolio theme for Jekyll
|
|
155
|
+
test_files: []
|