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,196 @@
1
+ @use "sass:map";
2
+ $whitesmoke: #f5f5f5;
3
+ $white: #fff;
4
+
5
+ $red: #e74727;
6
+ $blue: #009ddb;
7
+ $yellow: #fec92e;
8
+ $magenta: #cd2da8;
9
+ $night: #000;
10
+ $black: #111;
11
+ $mint: #26dab7;
12
+ $mint-dark: #1eae91;
13
+ $orange: #fa8224;
14
+ $orange-dark: #df6d16;
15
+
16
+ $red-dark: #dc3918;
17
+ $blue-dark: #007ab3;
18
+ $gray: #45474a;
19
+
20
+
21
+ // Theme definition mixin
22
+ @mixin define-theme($name, $theme) {
23
+ .theme-#{$name} {
24
+ --header-background: #{map.get($theme, header-background)};
25
+ --header-title: #{map.get($theme, header-title)};
26
+ --header-text: #{map.get($theme, header-text)};
27
+ --header-links-hover: #{map.get($theme, header-links-hover)};
28
+ --header-dots: #{map.get($theme, header-dots)};
29
+ --header-icon: #{map.get($theme, header-icon)};
30
+ --header-icon-hover: #{map.get($theme, header-icon-hover)};
31
+
32
+ --foreground: #{map.get($theme, foreground)};
33
+ --background: #{map.get($theme, background)};
34
+ --text: #{map.get($theme, text)};
35
+ --text-accent: #{map.get($theme, text-accent)};
36
+ --link-hover: #{map.get($theme, link-hover)};
37
+ --code: #{map.get($theme, code)};
38
+ }
39
+ }
40
+ $theme-mint: (
41
+ // Header
42
+ header-background: $mint,
43
+ header-title: $night,
44
+ header-text: $night,
45
+ header-links-hover: $white,
46
+ header-dots: $night,
47
+ header-icon: $night,
48
+ header-icon-hover: $white,
49
+ // Rest
50
+ foreground: $white,
51
+ background: $night,
52
+ text: $white,
53
+ text-accent: $mint,
54
+ link-hover: $mint,
55
+ code: $mint-dark,
56
+ );
57
+
58
+ $theme-black: (
59
+ // Header
60
+ header-background: $night,
61
+ header-title: $white,
62
+ header-text: $white,
63
+ header-links-hover: $red,
64
+ header-dots: $red,
65
+ header-icon: $white,
66
+ header-icon-hover: $red,
67
+ // Rest
68
+ foreground: $white,
69
+ background: $black,
70
+ text: $white,
71
+ text-accent: $red,
72
+ link-hover: $red,
73
+ code: $red-dark,
74
+ );
75
+
76
+ $theme-red: (
77
+ // Header
78
+ header-background: $red,
79
+ header-title: $whitesmoke,
80
+ header-text: $black,
81
+ header-links-hover: $whitesmoke,
82
+ header-dots: $black,
83
+ header-icon: $black,
84
+ header-icon-hover: $whitesmoke,
85
+ // Rest
86
+ foreground: $black,
87
+ background: $whitesmoke,
88
+ text: $black,
89
+ text-accent: $red,
90
+ link-hover: $red,
91
+ code: $red-dark,
92
+ );
93
+
94
+ $theme-white: (
95
+ // Header
96
+ header-background: $whitesmoke,
97
+ header-title: $black,
98
+ header-text: $black,
99
+ header-links-hover: $red,
100
+ header-dots: $red,
101
+ header-icon: $black,
102
+ header-icon-hover: $red,
103
+ // Rest
104
+ foreground: $black,
105
+ background: $white,
106
+ text: $black,
107
+ text-accent: $red,
108
+ link-hover: $red,
109
+ code: $red-dark,
110
+ );
111
+
112
+ $theme-yellow: (
113
+ // Header
114
+ header-background: $yellow,
115
+ header-title: $black,
116
+ header-text: $black,
117
+ header-links-hover: $white,
118
+ header-dots: $white,
119
+ header-icon: $black,
120
+ header-icon-hover: $white,
121
+ // Rest
122
+ foreground: $black,
123
+ background: $white,
124
+ text: $black,
125
+ text-accent: $yellow,
126
+ link-hover: $gray,
127
+ code: $gray,
128
+ );
129
+
130
+ $theme-blue: (
131
+ // Header
132
+ header-background: $blue,
133
+ header-title: $night,
134
+ header-text: $night,
135
+ header-links-hover: $white,
136
+ header-dots: $night,
137
+ header-icon: $night,
138
+ header-icon-hover: $white,
139
+ // Rest
140
+ foreground: $white,
141
+ background: $night,
142
+ text: $white,
143
+ text-accent: $blue,
144
+ link-hover: $blue,
145
+ code: $blue-dark,
146
+ );
147
+
148
+ $theme-orange: (
149
+ // Header
150
+ header-background: $orange,
151
+ header-title: $white,
152
+ header-text: $night,
153
+ header-links-hover: $white,
154
+ header-dots: $night,
155
+ header-icon: $night,
156
+ header-icon-hover: $white,
157
+ // Rest
158
+ foreground: $white,
159
+ background: $night,
160
+ text: $white,
161
+ text-accent: $orange,
162
+ link-hover: $orange,
163
+ code: $orange-dark,
164
+ );
165
+
166
+ $theme-magenta: (
167
+ // Header
168
+ header-background: $magenta,
169
+ header-title: $white,
170
+ header-text: $white,
171
+ header-links-hover: $night,
172
+ header-dots: $night,
173
+ header-icon: $white,
174
+ header-icon-hover: $night,
175
+ // Rest
176
+ foreground: $night,
177
+ background: $white,
178
+ text: $night,
179
+ text-accent: $magenta,
180
+ link-hover: $magenta,
181
+ code: $magenta,
182
+ );
183
+
184
+
185
+ @include define-theme("black", $theme-black);
186
+ @include define-theme("blue", $theme-blue);
187
+ @include define-theme("mint", $theme-mint);
188
+ @include define-theme("orange", $theme-orange);
189
+
190
+ @include define-theme("white", $theme-white);
191
+ @include define-theme("red", $theme-red);
192
+ @include define-theme("yellow", $theme-yellow);
193
+ @include define-theme("magenta", $theme-magenta);
194
+
195
+
196
+