helvetic-resume 1.0.0

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 (85) hide show
  1. checksums.yaml +7 -0
  2. data/LICENSE.txt +21 -0
  3. data/_data/ca.yaml +46 -0
  4. data/_data/common.yaml +11 -0
  5. data/_data/en.yaml +46 -0
  6. data/_data/es.yaml +46 -0
  7. data/_data/it.yaml +46 -0
  8. data/_includes/bar_graph.liquid +17 -0
  9. data/_includes/bluesky.liquid +5 -0
  10. data/_includes/dot-accent.liquid +3 -0
  11. data/_includes/dot.liquid +3 -0
  12. data/_includes/dribbble.liquid +5 -0
  13. data/_includes/email.liquid +5 -0
  14. data/_includes/footer.liquid +38 -0
  15. data/_includes/github.liquid +4 -0
  16. data/_includes/head.liquid +28 -0
  17. data/_includes/header.liquid +23 -0
  18. data/_includes/instagram.liquid +18 -0
  19. data/_includes/language-menu.liquid +32 -0
  20. data/_includes/linkedin.liquid +8 -0
  21. data/_includes/medium.liquid +9 -0
  22. data/_includes/post_block.liquid +9 -0
  23. data/_includes/previous-next.liquid +22 -0
  24. data/_includes/previous-next_has-categories.liquid +41 -0
  25. data/_includes/print-button.liquid +4 -0
  26. data/_includes/theme-toggle.liquid +19 -0
  27. data/_includes/twitter.liquid +9 -0
  28. data/_layouts/about.liquid +42 -0
  29. data/_layouts/category-post.liquid +20 -0
  30. data/_layouts/category_index.liquid +13 -0
  31. data/_layouts/default.liquid +14 -0
  32. data/_layouts/home.liquid +96 -0
  33. data/_layouts/page.liquid +12 -0
  34. data/_layouts/post.liquid +20 -0
  35. data/_layouts/redirect.liquid +22 -0
  36. data/_pages/404.md +8 -0
  37. data/_pages/ca/articles.md +25 -0
  38. data/_pages/ca/documentacio.md +91 -0
  39. data/_pages/ca/quant-a-mi.md +60 -0
  40. data/_pages/en/about-me.md +59 -0
  41. data/_pages/en/docs.md +91 -0
  42. data/_pages/en/reports.md +25 -0
  43. data/_pages/es/articulos.md +25 -0
  44. data/_pages/es/documentacion.md +93 -0
  45. data/_pages/es/sobre-mi.md +60 -0
  46. data/_pages/it/articoli.md +25 -0
  47. data/_pages/it/chi-sono.md +58 -0
  48. data/_pages/it/documenti.md +93 -0
  49. data/_posts/ca/2024-05-15-el-gran-massimo-vignelli.md +45 -0
  50. data/_posts/ca/2024-10-14-creilles.md +38 -0
  51. data/_posts/ca/2025-02-06-exemple-markdown.md +172 -0
  52. data/_posts/ca/2025-03-02-benvinguts-a-jekyll.md +60 -0
  53. data/_posts/en/2024-05-15-the-great-massimo-vignelli.md +45 -0
  54. data/_posts/en/2024-10-14-potatoes.md +38 -0
  55. data/_posts/en/2025-02-06-markdown-sample.md +174 -0
  56. data/_posts/en/2025-03-02-welcome-to-jekyll.md +59 -0
  57. data/_posts/es/2024-05-15-es-el-gran-massimo-vignelli.md +45 -0
  58. data/_posts/es/2024-10-14-patatas.md +38 -0
  59. data/_posts/es/2025-02-06-ejemplo-markdown.md +172 -0
  60. data/_posts/es/2025-03-03-bienvenido-a-jekyll.md +60 -0
  61. data/_posts/it/2024-05-15-il-grande-massimo-vignelli.md +45 -0
  62. data/_posts/it/2024-10-14-patate.md +38 -0
  63. data/_posts/it/2025-02-06-esempio-markdown.md +175 -0
  64. data/_posts/it/2025-03-02-benvenuti-a-jekyll.md +59 -0
  65. data/_sass/_base.scss +110 -0
  66. data/_sass/_components.scss +161 -0
  67. data/_sass/_themes.scss +196 -0
  68. data/_sass/_utilities.scss +700 -0
  69. data/_sass/_variables.scss +43 -0
  70. data/assets/css/print.scss +128 -0
  71. data/assets/css/style.scss +7 -0
  72. data/assets/images/avatar.webp +0 -0
  73. data/assets/images/theme_black.png +0 -0
  74. data/assets/images/theme_blue.png +0 -0
  75. data/assets/images/theme_magenta.png +0 -0
  76. data/assets/images/theme_mint.png +0 -0
  77. data/assets/images/theme_orange.png +0 -0
  78. data/assets/images/theme_red.png +0 -0
  79. data/assets/images/theme_white.png +0 -0
  80. data/assets/images/theme_yellow.png +0 -0
  81. data/assets/js/print-button.js +16 -0
  82. data/assets/js/theme-toggle.js +105 -0
  83. data/scripts/entrypoint.sh +35 -0
  84. data/scripts/post-create.sh +21 -0
  85. metadata +250 -0
@@ -0,0 +1,128 @@
1
+ ---
2
+ ---
3
+ @import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css") print;
4
+
5
+ @media print {
6
+ @page {
7
+ size: A4;
8
+ margin: 1.8cm;
9
+ margin-right: 1.5cm;
10
+ }
11
+
12
+ .job {
13
+ display: inline-block !important;
14
+ }
15
+
16
+ .contact-data, .links {
17
+ display: block !important;
18
+ }
19
+
20
+ .right-column {
21
+ margin-left: .5cm;
22
+ p {font-size: 10pt;}
23
+ }
24
+
25
+ .fa-solid, .print-only {
26
+ display: inline-block;
27
+ }
28
+
29
+ .fa-solid {
30
+ display: inline-block !important;
31
+ font-family: "Font Awesome 6 Free" !important;
32
+ -webkit-font-smoothing: antialiased;
33
+ font-weight: 900;
34
+ }
35
+
36
+ @font-face {
37
+ font-family: "Font Awesome 6 Free";
38
+ font-style: normal;
39
+ font-weight: 900;
40
+ font-display: block;
41
+ src: url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/webfonts/fa-solid-900.woff2") format("woff2");
42
+ }
43
+
44
+ .section {
45
+ margin-left: -.65cm;
46
+ }
47
+
48
+ body {
49
+ font-size: 10pt;
50
+ line-height: 1.3;
51
+ background: #fff !important;
52
+ color: #000 !important;
53
+ }
54
+
55
+ .text-color {
56
+ color: #000 !important;
57
+ fill: #000 !important;
58
+ }
59
+
60
+ // Hide non-essential elements
61
+ nav,
62
+ footer,
63
+ .theme-toggle,
64
+ .print-button,
65
+ .header-sticky,
66
+ .language-menu,
67
+ #divider {
68
+ display: none !important;
69
+ }
70
+
71
+ // Adjust article layout
72
+ article {
73
+ width: 100% !important;
74
+ margin: 0 !important;
75
+ padding: 0 !important;
76
+ }
77
+
78
+ // Headers styling
79
+ h1 {
80
+ font-size: 20pt !important;
81
+ padding: 0 !important;
82
+ margin: 0 !important;
83
+ }
84
+
85
+ h2 {
86
+ font-size: 14pt;
87
+ }
88
+
89
+ // Links handling
90
+ a {
91
+ color: var(--text-accent) !important;
92
+ text-decoration: none !important;
93
+ }
94
+
95
+ // List styling
96
+ ul, ol {
97
+ margin-left: 0;
98
+ padding-left: .7cm;
99
+ }
100
+
101
+ // Avoid page breaks inside important elements
102
+ li,
103
+ tr {
104
+ page-break-inside: avoid;
105
+ break-inside: avoid;
106
+ }
107
+
108
+ // Remove background colors and adjust text colors
109
+ .about {
110
+ display: flex !important;
111
+ .prose {
112
+ padding: .5cm 0 !important;
113
+ margin-left: .75cm;
114
+ width: 11.6cm !important;
115
+ }
116
+ .prose p, ul, ol {
117
+ font-size: 11pt;
118
+ }
119
+ background: none !important;
120
+ color: #000 !important;
121
+ }
122
+
123
+ // Adjust graphs if present
124
+ .graphs {
125
+ page-break-inside: avoid;
126
+ break-inside: avoid;
127
+ }
128
+ }
@@ -0,0 +1,7 @@
1
+ ---
2
+ ---
3
+
4
+ @charset "utf-8";
5
+
6
+ @use "base";
7
+ @import "https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css";
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
Binary file
@@ -0,0 +1,16 @@
1
+ document.addEventListener('DOMContentLoaded', () => {
2
+ const printButton = document.querySelector('.print-button');
3
+ if (printButton) {
4
+ printButton.addEventListener('click', async (e) => {
5
+ e.preventDefault();
6
+
7
+ // Ensure Font Awesome is loaded
8
+ try {
9
+ await document.fonts.load('900 1em "Font Awesome 6 Free"');
10
+ } catch (e) {
11
+ console.warn('Font loading failed, printing anyway:', e);
12
+ }
13
+ window.print();
14
+ });
15
+ }
16
+ });
@@ -0,0 +1,105 @@
1
+ (function () {
2
+ const THEME_MAP = {
3
+ dark: ["black", "mint", "blue", "orange"],
4
+ light: ["white", "red", "yellow", "magenta"],
5
+ };
6
+
7
+ const TRANSLATIONS = {
8
+ 'en': {
9
+ dark: 'Dark Mode',
10
+ light: 'Light Mode'
11
+ },
12
+ 'ca': {
13
+ dark: 'Mode fosc',
14
+ light: 'Mode clar'
15
+ },
16
+ 'es': {
17
+ dark: 'Modo oscuro',
18
+ light: 'Modo claro'
19
+ },
20
+ 'it': {
21
+ dark: 'Modo scuro',
22
+ light: 'Modo chiaro'
23
+ }
24
+ };
25
+
26
+ function getRandomTheme(mode) {
27
+ const themes = THEME_MAP[mode];
28
+ const randomIndex = Math.floor(Math.random() * themes.length);
29
+ return themes[randomIndex];
30
+ }
31
+
32
+
33
+ function getLocalizedText(mode) {
34
+ const lang = document.documentElement.lang || 'en';
35
+ const translations = TRANSLATIONS[lang] || TRANSLATIONS['en'];
36
+ return translations[mode];
37
+ }
38
+
39
+ function setTheme(preference, specificTheme = null) {
40
+ if (!document.body) return;
41
+
42
+ // Use stored specific theme or get random one
43
+ const themeName = specificTheme || getRandomTheme(preference);
44
+
45
+ // Remove all possible theme classes
46
+ Object.values(THEME_MAP)
47
+ .flat()
48
+ .forEach((theme) => {
49
+ document.body.classList.remove(`theme-${theme}`);
50
+ });
51
+
52
+ // Add new theme class
53
+ document.body.classList.add(`theme-${themeName}`);
54
+
55
+ // Update HTML attribute for the sun/moon animation
56
+ document.firstElementChild.setAttribute("data-theme", preference);
57
+
58
+ // Update button aria-label
59
+ const toggle = document.querySelector("#theme-toggle");
60
+ if (toggle) {
61
+ toggle.setAttribute("aria-label", preference);
62
+ const nextMode = preference === 'dark' ? 'light' : 'dark';
63
+ toggle.setAttribute("title", getLocalizedText(nextMode));
64
+ }
65
+
66
+ // Save both preference and specific theme
67
+ localStorage.setItem("theme-preference", preference);
68
+ localStorage.setItem("specific-theme", themeName);
69
+ }
70
+
71
+ function initializeTheme() {
72
+ // Get saved preferences
73
+ const savedPreference = localStorage.getItem("theme-preference");
74
+ const savedSpecificTheme = localStorage.getItem("specific-theme");
75
+ const systemPreference = window.matchMedia("(prefers-color-scheme: dark)").matches ? "dark" : "light";
76
+ const initialTheme = savedPreference || systemPreference;
77
+
78
+ // Initialize with saved specific theme
79
+ setTheme(initialTheme, savedSpecificTheme);
80
+
81
+ // Add click handler
82
+ const toggle = document.querySelector("#theme-toggle");
83
+ if (toggle) {
84
+ toggle.addEventListener("click", () => {
85
+ const current = localStorage.getItem("theme-preference") || initialTheme;
86
+ const newPreference = current === "dark" ? "light" : "dark";
87
+ // Only get random theme on click
88
+ setTheme(newPreference);
89
+ });
90
+ }
91
+ }
92
+
93
+ // Initialize when DOM is ready
94
+ if (document.readyState === "loading") {
95
+ document.addEventListener("DOMContentLoaded", initializeTheme);
96
+ } else {
97
+ initializeTheme();
98
+ }
99
+
100
+ // Sync with system changes
101
+ window.matchMedia("(prefers-color-scheme: dark)").addEventListener("change", ({ matches: isDark }) => {
102
+ const savedSpecificTheme = localStorage.getItem("specific-theme");
103
+ setTheme(isDark ? "dark" : "light", savedSpecificTheme);
104
+ });
105
+ })();
@@ -0,0 +1,35 @@
1
+ #!/bin/bash
2
+ set -euo pipefail
3
+ echo "Entrypoint script running"
4
+ cd src
5
+ CONFIG_FILE=_config.yml
6
+
7
+ manage_gemfile_lock() {
8
+ git config --global --add safe.directory '*'
9
+ if command -v git &> /dev/null && [ -f Gemfile.lock ]; then
10
+ if git ls-files --error-unmatch Gemfile.lock &> /dev/null; then
11
+ echo "Gemfile.lock is tracked by git, keeping it intact"
12
+ git restore Gemfile.lock 2>/dev/null || true
13
+ else
14
+ echo "Gemfile.lock is not tracked by git, removing it"
15
+ rm Gemfile.lock
16
+ fi
17
+ fi
18
+ }
19
+
20
+ start_jekyll() {
21
+ manage_gemfile_lock
22
+ bundle exec jekyll serve --force_polling --livereload-port 35737 &
23
+ }
24
+
25
+ start_jekyll
26
+
27
+ while true; do
28
+ inotifywait -q -e modify,move,create,delete $CONFIG_FILE
29
+ if [ $? -eq 0 ]; then
30
+ echo "Change detected to $CONFIG_FILE, restarting Jekyll"
31
+ jekyll_pid=$(pgrep -f jekyll)
32
+ kill -KILL $jekyll_pid
33
+ start_jekyll
34
+ fi
35
+ done
@@ -0,0 +1,21 @@
1
+ #!/bin/sh
2
+ # Install node deps defaulting to yarn
3
+ if [ -f package.json ]; then
4
+ if [ -f package-lock.json ]; then
5
+ npm -i
6
+ fi
7
+ yarn
8
+ fi
9
+
10
+ cd src
11
+
12
+ if [ -f Gemfile.lock ] && grep "BUNDLED WITH" Gemfile.lock > /dev/null; then
13
+ cat Gemfile.lock | tail -n 2 | grep -C2 "BUNDLED WITH" | tail -n 1 | xargs gem install bundler -v
14
+ fi
15
+
16
+ # If there's a Gemfile, then run `bundle install`
17
+ # It's assumed that the Gemfile will install Jekyll too
18
+ if [ -f Gemfile ]; then
19
+ bundle install
20
+ fi
21
+
metadata ADDED
@@ -0,0 +1,250 @@
1
+ --- !ruby/object:Gem::Specification
2
+ name: helvetic-resume
3
+ version: !ruby/object:Gem::Version
4
+ version: 1.0.0
5
+ platform: ruby
6
+ authors:
7
+ - Hipervincle
8
+ bindir: bin
9
+ cert_chain: []
10
+ date: 2025-03-09 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.4.1
19
+ type: :development
20
+ prerelease: false
21
+ version_requirements: !ruby/object:Gem::Requirement
22
+ requirements:
23
+ - - "~>"
24
+ - !ruby/object:Gem::Version
25
+ version: 4.4.1
26
+ - !ruby/object:Gem::Dependency
27
+ name: jekyll-polyglot
28
+ requirement: !ruby/object:Gem::Requirement
29
+ requirements:
30
+ - - "~>"
31
+ - !ruby/object:Gem::Version
32
+ version: '1.9'
33
+ type: :development
34
+ prerelease: false
35
+ version_requirements: !ruby/object:Gem::Requirement
36
+ requirements:
37
+ - - "~>"
38
+ - !ruby/object:Gem::Version
39
+ version: '1.9'
40
+ - !ruby/object:Gem::Dependency
41
+ name: jekyll-redirect-from
42
+ requirement: !ruby/object:Gem::Requirement
43
+ requirements:
44
+ - - "~>"
45
+ - !ruby/object:Gem::Version
46
+ version: 0.16.0
47
+ type: :development
48
+ prerelease: false
49
+ version_requirements: !ruby/object:Gem::Requirement
50
+ requirements:
51
+ - - "~>"
52
+ - !ruby/object:Gem::Version
53
+ version: 0.16.0
54
+ - !ruby/object:Gem::Dependency
55
+ name: jekyll-date-localization
56
+ requirement: !ruby/object:Gem::Requirement
57
+ requirements:
58
+ - - "~>"
59
+ - !ruby/object:Gem::Version
60
+ version: 0.0.8
61
+ type: :development
62
+ prerelease: false
63
+ version_requirements: !ruby/object:Gem::Requirement
64
+ requirements:
65
+ - - "~>"
66
+ - !ruby/object:Gem::Version
67
+ version: 0.0.8
68
+ - !ruby/object:Gem::Dependency
69
+ name: jekyll-minifier
70
+ requirement: !ruby/object:Gem::Requirement
71
+ requirements:
72
+ - - "~>"
73
+ - !ruby/object:Gem::Version
74
+ version: 0.1.10
75
+ type: :development
76
+ prerelease: false
77
+ version_requirements: !ruby/object:Gem::Requirement
78
+ requirements:
79
+ - - "~>"
80
+ - !ruby/object:Gem::Version
81
+ version: 0.1.10
82
+ - !ruby/object:Gem::Dependency
83
+ name: jekyll-sitemap
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - "~>"
87
+ - !ruby/object:Gem::Version
88
+ version: 1.4.0
89
+ type: :development
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - "~>"
94
+ - !ruby/object:Gem::Version
95
+ version: 1.4.0
96
+ - !ruby/object:Gem::Dependency
97
+ name: jekyll-feed
98
+ requirement: !ruby/object:Gem::Requirement
99
+ requirements:
100
+ - - "~>"
101
+ - !ruby/object:Gem::Version
102
+ version: 0.17.0
103
+ type: :development
104
+ prerelease: false
105
+ version_requirements: !ruby/object:Gem::Requirement
106
+ requirements:
107
+ - - "~>"
108
+ - !ruby/object:Gem::Version
109
+ version: 0.17.0
110
+ - !ruby/object:Gem::Dependency
111
+ name: bundler
112
+ requirement: !ruby/object:Gem::Requirement
113
+ requirements:
114
+ - - "~>"
115
+ - !ruby/object:Gem::Version
116
+ version: 2.6.5
117
+ type: :development
118
+ prerelease: false
119
+ version_requirements: !ruby/object:Gem::Requirement
120
+ requirements:
121
+ - - "~>"
122
+ - !ruby/object:Gem::Version
123
+ version: 2.6.5
124
+ - !ruby/object:Gem::Dependency
125
+ name: rake
126
+ requirement: !ruby/object:Gem::Requirement
127
+ requirements:
128
+ - - "~>"
129
+ - !ruby/object:Gem::Version
130
+ version: 13.2.1
131
+ type: :development
132
+ prerelease: false
133
+ version_requirements: !ruby/object:Gem::Requirement
134
+ requirements:
135
+ - - "~>"
136
+ - !ruby/object:Gem::Version
137
+ version: 13.2.1
138
+ email:
139
+ - jbarber@hipervincle.com
140
+ executables: []
141
+ extensions: []
142
+ extra_rdoc_files: []
143
+ files:
144
+ - LICENSE.txt
145
+ - _data/ca.yaml
146
+ - _data/common.yaml
147
+ - _data/en.yaml
148
+ - _data/es.yaml
149
+ - _data/it.yaml
150
+ - _includes/bar_graph.liquid
151
+ - _includes/bluesky.liquid
152
+ - _includes/dot-accent.liquid
153
+ - _includes/dot.liquid
154
+ - _includes/dribbble.liquid
155
+ - _includes/email.liquid
156
+ - _includes/footer.liquid
157
+ - _includes/github.liquid
158
+ - _includes/head.liquid
159
+ - _includes/header.liquid
160
+ - _includes/instagram.liquid
161
+ - _includes/language-menu.liquid
162
+ - _includes/linkedin.liquid
163
+ - _includes/medium.liquid
164
+ - _includes/post_block.liquid
165
+ - _includes/previous-next.liquid
166
+ - _includes/previous-next_has-categories.liquid
167
+ - _includes/print-button.liquid
168
+ - _includes/theme-toggle.liquid
169
+ - _includes/twitter.liquid
170
+ - _layouts/about.liquid
171
+ - _layouts/category-post.liquid
172
+ - _layouts/category_index.liquid
173
+ - _layouts/default.liquid
174
+ - _layouts/home.liquid
175
+ - _layouts/page.liquid
176
+ - _layouts/post.liquid
177
+ - _layouts/redirect.liquid
178
+ - _pages/404.md
179
+ - _pages/ca/articles.md
180
+ - _pages/ca/documentacio.md
181
+ - _pages/ca/quant-a-mi.md
182
+ - _pages/en/about-me.md
183
+ - _pages/en/docs.md
184
+ - _pages/en/reports.md
185
+ - _pages/es/articulos.md
186
+ - _pages/es/documentacion.md
187
+ - _pages/es/sobre-mi.md
188
+ - _pages/it/articoli.md
189
+ - _pages/it/chi-sono.md
190
+ - _pages/it/documenti.md
191
+ - _posts/ca/2024-05-15-el-gran-massimo-vignelli.md
192
+ - _posts/ca/2024-10-14-creilles.md
193
+ - _posts/ca/2025-02-06-exemple-markdown.md
194
+ - _posts/ca/2025-03-02-benvinguts-a-jekyll.md
195
+ - _posts/en/2024-05-15-the-great-massimo-vignelli.md
196
+ - _posts/en/2024-10-14-potatoes.md
197
+ - _posts/en/2025-02-06-markdown-sample.md
198
+ - _posts/en/2025-03-02-welcome-to-jekyll.md
199
+ - _posts/es/2024-05-15-es-el-gran-massimo-vignelli.md
200
+ - _posts/es/2024-10-14-patatas.md
201
+ - _posts/es/2025-02-06-ejemplo-markdown.md
202
+ - _posts/es/2025-03-03-bienvenido-a-jekyll.md
203
+ - _posts/it/2024-05-15-il-grande-massimo-vignelli.md
204
+ - _posts/it/2024-10-14-patate.md
205
+ - _posts/it/2025-02-06-esempio-markdown.md
206
+ - _posts/it/2025-03-02-benvenuti-a-jekyll.md
207
+ - _sass/_base.scss
208
+ - _sass/_components.scss
209
+ - _sass/_themes.scss
210
+ - _sass/_utilities.scss
211
+ - _sass/_variables.scss
212
+ - assets/css/print.scss
213
+ - assets/css/style.scss
214
+ - assets/images/avatar.webp
215
+ - assets/images/theme_black.png
216
+ - assets/images/theme_blue.png
217
+ - assets/images/theme_magenta.png
218
+ - assets/images/theme_mint.png
219
+ - assets/images/theme_orange.png
220
+ - assets/images/theme_red.png
221
+ - assets/images/theme_white.png
222
+ - assets/images/theme_yellow.png
223
+ - assets/js/print-button.js
224
+ - assets/js/theme-toggle.js
225
+ - scripts/entrypoint.sh
226
+ - scripts/post-create.sh
227
+ homepage: https://jaumebarber.com/helvetic-resume
228
+ licenses:
229
+ - MIT
230
+ metadata:
231
+ homepage_uri: https://jaumebarber.com/helvetic-resume
232
+ source_code_uri: https://gitbub.com/hipervincle/helvetic-resume
233
+ rdoc_options: []
234
+ require_paths:
235
+ - lib
236
+ required_ruby_version: !ruby/object:Gem::Requirement
237
+ requirements:
238
+ - - ">="
239
+ - !ruby/object:Gem::Version
240
+ version: 3.1.0
241
+ required_rubygems_version: !ruby/object:Gem::Requirement
242
+ requirements:
243
+ - - ">="
244
+ - !ruby/object:Gem::Version
245
+ version: '0'
246
+ requirements: []
247
+ rubygems_version: 3.6.5
248
+ specification_version: 4
249
+ summary: A bold typographic theme for Jekyll, inspired by Swiss design.
250
+ test_files: []