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.
- checksums.yaml +7 -0
- data/LICENSE.txt +21 -0
- data/_data/ca.yaml +46 -0
- data/_data/common.yaml +11 -0
- data/_data/en.yaml +46 -0
- data/_data/es.yaml +46 -0
- data/_data/it.yaml +46 -0
- data/_includes/bar_graph.liquid +17 -0
- data/_includes/bluesky.liquid +5 -0
- data/_includes/dot-accent.liquid +3 -0
- data/_includes/dot.liquid +3 -0
- data/_includes/dribbble.liquid +5 -0
- data/_includes/email.liquid +5 -0
- data/_includes/footer.liquid +38 -0
- data/_includes/github.liquid +4 -0
- data/_includes/head.liquid +28 -0
- data/_includes/header.liquid +23 -0
- data/_includes/instagram.liquid +18 -0
- data/_includes/language-menu.liquid +32 -0
- data/_includes/linkedin.liquid +8 -0
- data/_includes/medium.liquid +9 -0
- data/_includes/post_block.liquid +9 -0
- data/_includes/previous-next.liquid +22 -0
- data/_includes/previous-next_has-categories.liquid +41 -0
- data/_includes/print-button.liquid +4 -0
- data/_includes/theme-toggle.liquid +19 -0
- data/_includes/twitter.liquid +9 -0
- data/_layouts/about.liquid +42 -0
- data/_layouts/category-post.liquid +20 -0
- data/_layouts/category_index.liquid +13 -0
- data/_layouts/default.liquid +14 -0
- data/_layouts/home.liquid +96 -0
- data/_layouts/page.liquid +12 -0
- data/_layouts/post.liquid +20 -0
- data/_layouts/redirect.liquid +22 -0
- data/_pages/404.md +8 -0
- data/_pages/ca/articles.md +25 -0
- data/_pages/ca/documentacio.md +91 -0
- data/_pages/ca/quant-a-mi.md +60 -0
- data/_pages/en/about-me.md +59 -0
- data/_pages/en/docs.md +91 -0
- data/_pages/en/reports.md +25 -0
- data/_pages/es/articulos.md +25 -0
- data/_pages/es/documentacion.md +93 -0
- data/_pages/es/sobre-mi.md +60 -0
- data/_pages/it/articoli.md +25 -0
- data/_pages/it/chi-sono.md +58 -0
- data/_pages/it/documenti.md +93 -0
- data/_posts/ca/2024-05-15-el-gran-massimo-vignelli.md +45 -0
- data/_posts/ca/2024-10-14-creilles.md +38 -0
- data/_posts/ca/2025-02-06-exemple-markdown.md +172 -0
- data/_posts/ca/2025-03-02-benvinguts-a-jekyll.md +60 -0
- data/_posts/en/2024-05-15-the-great-massimo-vignelli.md +45 -0
- data/_posts/en/2024-10-14-potatoes.md +38 -0
- data/_posts/en/2025-02-06-markdown-sample.md +174 -0
- data/_posts/en/2025-03-02-welcome-to-jekyll.md +59 -0
- data/_posts/es/2024-05-15-es-el-gran-massimo-vignelli.md +45 -0
- data/_posts/es/2024-10-14-patatas.md +38 -0
- data/_posts/es/2025-02-06-ejemplo-markdown.md +172 -0
- data/_posts/es/2025-03-03-bienvenido-a-jekyll.md +60 -0
- data/_posts/it/2024-05-15-il-grande-massimo-vignelli.md +45 -0
- data/_posts/it/2024-10-14-patate.md +38 -0
- data/_posts/it/2025-02-06-esempio-markdown.md +175 -0
- data/_posts/it/2025-03-02-benvenuti-a-jekyll.md +59 -0
- data/_sass/_base.scss +110 -0
- data/_sass/_components.scss +161 -0
- data/_sass/_themes.scss +196 -0
- data/_sass/_utilities.scss +700 -0
- data/_sass/_variables.scss +43 -0
- data/assets/css/print.scss +128 -0
- data/assets/css/style.scss +7 -0
- data/assets/images/avatar.webp +0 -0
- data/assets/images/theme_black.png +0 -0
- data/assets/images/theme_blue.png +0 -0
- data/assets/images/theme_magenta.png +0 -0
- data/assets/images/theme_mint.png +0 -0
- data/assets/images/theme_orange.png +0 -0
- data/assets/images/theme_red.png +0 -0
- data/assets/images/theme_white.png +0 -0
- data/assets/images/theme_yellow.png +0 -0
- data/assets/js/print-button.js +16 -0
- data/assets/js/theme-toggle.js +105 -0
- data/scripts/entrypoint.sh +35 -0
- data/scripts/post-create.sh +21 -0
- metadata +250 -0
data/_sass/_themes.scss
ADDED
@@ -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
|
+
|