jekyll-theme-lucas-minima 0.1.6 → 0.1.7
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/_includes/header.html +1 -1
- data/_layouts/page-no-header.html +10 -0
- data/_layouts/resume.html +112 -78
- data/_sass/_resume.scss +27 -0
- data/_sass/minima/_layout.scss +14 -0
- metadata +3 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3feb437ed028d62fc89280dd1c4e94f2d23f737f06d190e15c3ac7eb8b8b9932
|
|
4
|
+
data.tar.gz: 350dcc5dede5660475e3e9959c22f221cd1f907e6e98135e6c665766f56ea089
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 32e1ab5121a0087e91d2994a69df13e2e8009edefd89c655be3dc341ceba0d4fb4722379cdf66d7b7cfa0572baeb85486407fb17029c1966b86694403a8e7372
|
|
7
|
+
data.tar.gz: 2d17b4c06fa0a129133ae340cb1b219b5818c8ac49c5b4526975c9d78e13ce09a11cb804944d367d80ade4161f2e648bfb02f659f462ec2ae702168db5c2c3f3
|
data/_includes/header.html
CHANGED
|
@@ -20,7 +20,7 @@
|
|
|
20
20
|
{%- for path in page_paths -%}
|
|
21
21
|
{%- assign my_page = site.pages | where: "path", path | first -%}
|
|
22
22
|
{%- if my_page.title -%}
|
|
23
|
-
|
|
23
|
+
<a class="page-link {% if page.url == my_page.url %}active{% endif %}" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
|
|
24
24
|
{%- endif -%}
|
|
25
25
|
{%- endfor -%}
|
|
26
26
|
</div>
|
data/_layouts/resume.html
CHANGED
|
@@ -1,15 +1,20 @@
|
|
|
1
1
|
---
|
|
2
|
-
layout: page
|
|
2
|
+
layout: page-no-header
|
|
3
3
|
---
|
|
4
|
+
|
|
4
5
|
<div class="wrapper" itemscope itemtype="http://schema.org/Person">
|
|
5
|
-
<meta itemprop="telephone" content="{{ site.resume_contact_telephone }}"/>
|
|
6
|
-
<meta itemprop="address" content="{{ site.resume_contact_address }}"/>
|
|
6
|
+
<meta itemprop="telephone" content="{{ site.resume_contact_telephone }}" />
|
|
7
|
+
<meta itemprop="address" content="{{ site.resume_contact_address }}" />
|
|
7
8
|
|
|
8
9
|
<header class="page-header">
|
|
9
|
-
|
|
10
10
|
<!-- You can turn off the avatar in _config.yml by setting to false -->
|
|
11
11
|
{% if site.resume_avatar == 'true' %}
|
|
12
|
-
<img
|
|
12
|
+
<img
|
|
13
|
+
src="images/avatar.jpg"
|
|
14
|
+
alt="my photo"
|
|
15
|
+
class="avatar no-print"
|
|
16
|
+
itemprop="image"
|
|
17
|
+
/>
|
|
13
18
|
{% endif %}
|
|
14
19
|
|
|
15
20
|
<!-- Your name is defined in the _config.yml file -->
|
|
@@ -23,7 +28,6 @@ layout: page
|
|
|
23
28
|
{% endif %}
|
|
24
29
|
|
|
25
30
|
<div class="title-bar no-print">
|
|
26
|
-
|
|
27
31
|
<!-- Your title is also defined in the _config.yml file -->
|
|
28
32
|
<h2 class="header-title" itemprop="jobTitle">{{ site.resume_title }}</h2>
|
|
29
33
|
|
|
@@ -35,37 +39,54 @@ layout: page
|
|
|
35
39
|
{{ site.resume_header_intro }}
|
|
36
40
|
</div>
|
|
37
41
|
|
|
38
|
-
{% if site.resume_looking_for_work == 'yes' %}
|
|
42
|
+
<!-- {% if site.resume_looking_for_work == 'yes' %}
|
|
39
43
|
<a href="mailto:{{ site.resume_contact_email }}" class="contact-button no-print" itemprop="email">Contact me</a>
|
|
40
44
|
{% elsif site.resume_looking_for_work == 'no' %}
|
|
41
45
|
<a class="contact-button not-looking no-print">I'm not looking for work right now.</a>
|
|
42
46
|
{% else %}
|
|
43
|
-
{% endif %}
|
|
47
|
+
{% endif %} -->
|
|
44
48
|
|
|
49
|
+
{% if site.resume_looking_for_work == 'yes' %}
|
|
50
|
+
<div class="contact-info no-print">
|
|
51
|
+
<p>
|
|
52
|
+
Email:
|
|
53
|
+
<a href="mailto:{{ site.resume_contact_email }}"
|
|
54
|
+
>{{ site.resume_contact_email }}</a>
|
|
55
|
+
</p>
|
|
56
|
+
<p>Contact: {{ site.resume_contact_number }}</p>
|
|
57
|
+
</div>
|
|
58
|
+
{% elsif site.resume_looking_for_work == 'no' %}
|
|
59
|
+
<p class="contact-info not-looking no-print">
|
|
60
|
+
I'm not looking for work right now.
|
|
61
|
+
</p>
|
|
62
|
+
{% else %} {% endif %}
|
|
45
63
|
</header>
|
|
46
64
|
|
|
47
65
|
{% if site.resume_section_experience %}
|
|
48
66
|
<!-- begin Experience -->
|
|
49
67
|
<section class="content-section">
|
|
50
|
-
|
|
51
68
|
<header class="section-header">
|
|
52
69
|
<h2>Experience</h2>
|
|
53
70
|
</header>
|
|
54
71
|
|
|
55
72
|
{% for job in site.data.experience %}
|
|
56
|
-
<div
|
|
73
|
+
<div
|
|
74
|
+
class="resume-item"
|
|
75
|
+
itemscope
|
|
76
|
+
itemprop="worksFor"
|
|
77
|
+
itemtype="http://schema.org/Organization"
|
|
78
|
+
>
|
|
57
79
|
<h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
|
|
58
|
-
<h4 class="resume-item-details" itemprop="description">
|
|
80
|
+
<h4 class="resume-item-details" itemprop="description">
|
|
81
|
+
{{ job.position }} • {{ job.duration }}
|
|
82
|
+
</h4>
|
|
59
83
|
<p class="resume-item-copy">{{ job.summary }}</p>
|
|
60
|
-
</div
|
|
84
|
+
</div>
|
|
85
|
+
<!-- end of resume-item -->
|
|
61
86
|
{% endfor %}
|
|
62
|
-
|
|
63
87
|
</section>
|
|
64
88
|
<!-- end Experience -->
|
|
65
|
-
{% endif %}
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
{% if site.resume_section_education %}
|
|
89
|
+
{% endif %} {% if site.resume_section_education %}
|
|
69
90
|
<!-- begin Education -->
|
|
70
91
|
<section class="content-section">
|
|
71
92
|
<header class="section-header">
|
|
@@ -73,27 +94,32 @@ layout: page
|
|
|
73
94
|
</header>
|
|
74
95
|
|
|
75
96
|
{% for education in site.data.education %}
|
|
76
|
-
<div
|
|
97
|
+
<div
|
|
98
|
+
class="resume-item"
|
|
99
|
+
itemscope
|
|
100
|
+
itemprop="alumniOf"
|
|
101
|
+
itemtype="http://schema.org/CollegeOrUniversity"
|
|
102
|
+
>
|
|
77
103
|
<h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
|
|
78
|
-
<h4 class="resume-item-details group" itemprop="description">
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
104
|
+
<h4 class="resume-item-details group" itemprop="description">
|
|
105
|
+
{{ education.degree }} • {{ education.year }}
|
|
106
|
+
</h4>
|
|
107
|
+
<h5 class="resume-item-details award-title" itemprop="description">
|
|
108
|
+
{{ education.award }}
|
|
109
|
+
</h5>
|
|
110
|
+
<p class="resume-item-copy" itemprop="description"></p>
|
|
111
|
+
<ul class="resume-item-list">
|
|
112
|
+
{% for award in education.awards %}
|
|
113
|
+
<li>{{ award.award }}</li>
|
|
114
|
+
{% endfor %}
|
|
115
|
+
</ul>
|
|
87
116
|
|
|
88
117
|
<p class="resume-item-copy">{{ education.summary }}</p>
|
|
89
118
|
</div>
|
|
90
119
|
{% endfor %}
|
|
91
120
|
</section>
|
|
92
121
|
<!-- end Education -->
|
|
93
|
-
{% endif %}
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
{% if site.resume_section_projects %}
|
|
122
|
+
{% endif %} {% if site.resume_section_projects %}
|
|
97
123
|
<!-- begin Projects -->
|
|
98
124
|
<section class="content-section">
|
|
99
125
|
<header class="section-header">
|
|
@@ -101,22 +127,32 @@ layout: page
|
|
|
101
127
|
</header>
|
|
102
128
|
|
|
103
129
|
{% for project in site.data.projects %}
|
|
104
|
-
<div
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
130
|
+
<div
|
|
131
|
+
class="resume-item"
|
|
132
|
+
itemscope
|
|
133
|
+
itemtype="http://schema.org/CreativeWork"
|
|
134
|
+
>
|
|
135
|
+
<meta
|
|
136
|
+
itemprop="creator"
|
|
137
|
+
content="{{ site.resume_name }}"
|
|
138
|
+
itemtype="http://schema.org/Person"
|
|
139
|
+
/>
|
|
140
|
+
<h3 class="resume-item-title" itemprop="name">
|
|
141
|
+
{% if project.url %}<a href="{{ project.url }}" itemprop="url"
|
|
142
|
+
>{{ project.project }}</a
|
|
143
|
+
>{% else %}{{ project.project }}{% endif %}
|
|
144
|
+
</h3>
|
|
145
|
+
<h4 class="resume-item-details" itemprop="description">
|
|
146
|
+
{{ project.role }} • {{ project.duration }}
|
|
147
|
+
</h4>
|
|
108
148
|
<p class="resume-item-copy">{{ project.description }}</p>
|
|
109
149
|
</div>
|
|
110
150
|
{% endfor %}
|
|
111
|
-
|
|
112
151
|
</section>
|
|
113
152
|
<!-- end Projects -->
|
|
114
|
-
{% endif %}
|
|
115
|
-
|
|
116
|
-
{% if site.resume_section_skills %}
|
|
153
|
+
{% endif %} {% if site.resume_section_skills %}
|
|
117
154
|
<!-- begin Skills -->
|
|
118
155
|
<section class="content-section">
|
|
119
|
-
|
|
120
156
|
<header class="section-header">
|
|
121
157
|
<h2>Skills</h2>
|
|
122
158
|
</header>
|
|
@@ -126,55 +162,58 @@ layout: page
|
|
|
126
162
|
<p class="resume-item-copy">{{ skill.description }}</p>
|
|
127
163
|
</div>
|
|
128
164
|
{% endfor %}
|
|
129
|
-
|
|
130
165
|
</section>
|
|
131
166
|
<!-- end Skills -->
|
|
132
|
-
{% endif %}
|
|
133
|
-
|
|
134
|
-
{% if site.resume_section_recognition %}
|
|
167
|
+
{% endif %} {% if site.resume_section_recognition %}
|
|
135
168
|
<!-- begin Recognition -->
|
|
136
169
|
<section class="content-section">
|
|
137
|
-
|
|
138
170
|
<header class="section-header">
|
|
139
171
|
<h2>Recognition</h2>
|
|
140
172
|
</header>
|
|
141
173
|
|
|
142
174
|
{% for recognition in site.data.recognitions %}
|
|
143
175
|
<div class="resume-item">
|
|
144
|
-
<h3 class="resume-item-title" itemprop="award">
|
|
145
|
-
|
|
176
|
+
<h3 class="resume-item-title" itemprop="award">
|
|
177
|
+
{{ recognition.award }}
|
|
178
|
+
</h3>
|
|
179
|
+
<h4 class="resume-item-details">
|
|
180
|
+
{{ recognition.organization }} • {{ recognition.year }}
|
|
181
|
+
</h4>
|
|
146
182
|
<p class="resume-item-copy">{{ recognition.summary }}</p>
|
|
147
183
|
</div>
|
|
148
184
|
{% endfor %}
|
|
149
|
-
|
|
150
185
|
</section>
|
|
151
186
|
<!-- end Recognition -->
|
|
152
|
-
{% endif %}
|
|
153
|
-
|
|
154
|
-
{% if site.resume_section_associations %}
|
|
187
|
+
{% endif %} {% if site.resume_section_associations %}
|
|
155
188
|
<!-- begin Associations -->
|
|
156
189
|
<section class="content-section">
|
|
157
|
-
|
|
158
190
|
<header class="section-header">
|
|
159
191
|
<h2>Associations</h2>
|
|
160
192
|
</header>
|
|
161
193
|
|
|
162
194
|
{% for association in site.data.associations %}
|
|
163
|
-
<div
|
|
164
|
-
|
|
165
|
-
|
|
195
|
+
<div
|
|
196
|
+
class="resume-item"
|
|
197
|
+
itemscope
|
|
198
|
+
itemprop="memberOf"
|
|
199
|
+
itemtype="http://schema.org/Organization"
|
|
200
|
+
>
|
|
201
|
+
<h3 class="resume-item-title" itemprop="name">
|
|
202
|
+
{% if association.url %}<a href="{{ association.url }}"
|
|
203
|
+
>{{ association.organization }}</a
|
|
204
|
+
>{% else %}{{ association.organization }}{% endif %}
|
|
205
|
+
</h3>
|
|
206
|
+
<h4 class="resume-item-details" itemprop="description">
|
|
207
|
+
{{ association.role }} • {{ association.year }}
|
|
208
|
+
</h4>
|
|
166
209
|
<p class="resume-item-copy">{{ association.summary }}</p>
|
|
167
210
|
</div>
|
|
168
211
|
{% endfor %}
|
|
169
|
-
|
|
170
212
|
</section>
|
|
171
213
|
<!-- end Associations -->
|
|
172
|
-
{% endif %}
|
|
173
|
-
|
|
174
|
-
{% if site.resume_section_interests %}
|
|
214
|
+
{% endif %} {% if site.resume_section_interests %}
|
|
175
215
|
<!-- begin Interests -->
|
|
176
216
|
<section class="content-section">
|
|
177
|
-
|
|
178
217
|
<header class="section-header">
|
|
179
218
|
<h2>Outside Interests</h2>
|
|
180
219
|
</header>
|
|
@@ -186,15 +225,11 @@ layout: page
|
|
|
186
225
|
{% endfor %}
|
|
187
226
|
</ul>
|
|
188
227
|
</div>
|
|
189
|
-
|
|
190
228
|
</section>
|
|
191
229
|
<!-- end Interests -->
|
|
192
|
-
{% endif %}
|
|
193
|
-
|
|
194
|
-
{% if site.resume_section_links %}
|
|
230
|
+
{% endif %} {% if site.resume_section_links %}
|
|
195
231
|
<!-- begin Links -->
|
|
196
232
|
<section class="content-section">
|
|
197
|
-
|
|
198
233
|
<header class="section-header">
|
|
199
234
|
<h2>Additional Links</h2>
|
|
200
235
|
</header>
|
|
@@ -202,34 +237,33 @@ layout: page
|
|
|
202
237
|
<div class="resume-item">
|
|
203
238
|
<ul class="resume-item-list">
|
|
204
239
|
{% for link in site.data.links %}
|
|
205
|
-
<li
|
|
240
|
+
<li>
|
|
241
|
+
<a href="{{" link.url }} itemprop="url">{{ link.description }}</a>
|
|
242
|
+
</li>
|
|
206
243
|
{% endfor %}
|
|
207
244
|
</ul>
|
|
208
245
|
</div>
|
|
209
|
-
|
|
210
246
|
</section>
|
|
211
247
|
<!-- end Links -->
|
|
212
|
-
{% endif %}
|
|
213
|
-
|
|
214
|
-
{% if site.resume_print_social_links %}
|
|
248
|
+
{% endif %} {% if site.resume_print_social_links %}
|
|
215
249
|
<!-- begin Print Social Links -->
|
|
216
250
|
<section class="content-section print-only">
|
|
217
|
-
|
|
218
251
|
<header class="section-header">
|
|
219
252
|
<h2>Social Links</h2>
|
|
220
253
|
</header>
|
|
221
254
|
|
|
222
|
-
<div class="resume-item">
|
|
223
|
-
{% include print-social-links.html %}
|
|
224
|
-
</div>
|
|
225
|
-
|
|
255
|
+
<div class="resume-item">{% include print-social-links.html %}</div>
|
|
226
256
|
</section>
|
|
227
257
|
<!-- end Print Social Links -->
|
|
228
258
|
{% endif %}
|
|
229
259
|
|
|
230
260
|
<footer class="page-footer">
|
|
231
|
-
<p class="footer-line">
|
|
232
|
-
|
|
261
|
+
<p class="footer-line">
|
|
262
|
+
Made by <a href="http://twitter.com/jglovier">@jglovier</a>. Fork me on
|
|
263
|
+
<a href="https://github.com/jglovier/resume-template">GitHub</a>.
|
|
264
|
+
</p>
|
|
265
|
+
<p class="footer-line">
|
|
266
|
+
If this is your live resume, you can modify or remove this part. ;-)
|
|
267
|
+
</p>
|
|
233
268
|
</footer>
|
|
234
|
-
|
|
235
269
|
</div>
|
data/_sass/_resume.scss
CHANGED
|
@@ -130,6 +130,33 @@
|
|
|
130
130
|
&.not-looking { width: 400px; }
|
|
131
131
|
}
|
|
132
132
|
|
|
133
|
+
.contact-info {
|
|
134
|
+
margin: 1.5rem auto;
|
|
135
|
+
width: 300px;
|
|
136
|
+
text-align: center;
|
|
137
|
+
|
|
138
|
+
p {
|
|
139
|
+
margin: 0.5rem 0;
|
|
140
|
+
@include sans_light;
|
|
141
|
+
color: #333;
|
|
142
|
+
|
|
143
|
+
a {
|
|
144
|
+
color: #333;
|
|
145
|
+
text-decoration: none;
|
|
146
|
+
@include transition(color 0.2s ease);
|
|
147
|
+
|
|
148
|
+
&:hover {
|
|
149
|
+
color: #fff;
|
|
150
|
+
}
|
|
151
|
+
}
|
|
152
|
+
}
|
|
153
|
+
}
|
|
154
|
+
|
|
155
|
+
.not-looking {
|
|
156
|
+
width: 400px;
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
|
|
133
160
|
// resume content styles
|
|
134
161
|
|
|
135
162
|
.content-section {
|
data/_sass/minima/_layout.scss
CHANGED
|
@@ -44,9 +44,23 @@
|
|
|
44
44
|
&:not(:last-child) {
|
|
45
45
|
margin-right: 20px;
|
|
46
46
|
}
|
|
47
|
+
|
|
48
|
+
&.active {
|
|
49
|
+
background-color: #000; // Set the background color for the active page
|
|
50
|
+
color: #fff; // Set the text color for the active page
|
|
51
|
+
border-radius: 5px; // Add rounded corners to create a button-like effect
|
|
52
|
+
padding: 5px 10px; // Add padding for better appearance
|
|
53
|
+
}
|
|
47
54
|
}
|
|
48
55
|
|
|
49
56
|
@include media-query($on-palm) {
|
|
57
|
+
&.active {
|
|
58
|
+
background-color: #000;
|
|
59
|
+
color: #fff;
|
|
60
|
+
border-radius: 5px;
|
|
61
|
+
padding: 5px 10px;
|
|
62
|
+
}
|
|
63
|
+
|
|
50
64
|
position: absolute;
|
|
51
65
|
top: 9px;
|
|
52
66
|
right: $spacing-unit / 2;
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: jekyll-theme-lucas-minima
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.1.
|
|
4
|
+
version: 0.1.7
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- LucasZ-SGP
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-12-
|
|
11
|
+
date: 2023-12-21 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -113,6 +113,7 @@ files:
|
|
|
113
113
|
- _includes/social.html
|
|
114
114
|
- _layouts/default.html
|
|
115
115
|
- _layouts/home.html
|
|
116
|
+
- _layouts/page-no-header.html
|
|
116
117
|
- _layouts/page.html
|
|
117
118
|
- _layouts/post.html
|
|
118
119
|
- _layouts/resume.html
|