jekyll-theme-lucas-minima 0.1.1 → 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 +4 -4
- data/_layouts/resume.html +232 -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: d1c4ee16970401e55377dbd167ac29279b53642629058ead2e8f2e8439b64afe
|
|
4
|
+
data.tar.gz: 3e83e4d351804ff78d06ae853ea6e48862a608ea07bae819dca45d4cdf9dbdd6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: f2326abb69d17781af3e47180726bc5f3fe816a2c0e276768b66d7fb76361982b7a152120fb0188746e99091f1644a04ef1c44ad593de6a5572f9f2f17068993
|
|
7
|
+
data.tar.gz: 7b1888cf63b740f3ff64ef68597ba7f5aeeeb1b91d71287523ac67816c4caa5554057890617803cc84a8a0fc95db76b3e6b36d06d55bcd94ccffdf52d9ce4293
|
|
@@ -0,0 +1,232 @@
|
|
|
1
|
+
<div class="wrapper" itemscope itemtype="http://schema.org/Person">
|
|
2
|
+
<meta itemprop="telephone" content="{{ site.resume_contact_telephone }}"/>
|
|
3
|
+
<meta itemprop="address" content="{{ site.resume_contact_address }}"/>
|
|
4
|
+
|
|
5
|
+
<header class="page-header">
|
|
6
|
+
|
|
7
|
+
<!-- You can turn off the avatar in _config.yml by setting to false -->
|
|
8
|
+
{% if site.resume_avatar == 'true' %}
|
|
9
|
+
<img src="images/avatar.jpg" alt="my photo" class="avatar no-print" itemprop="image">
|
|
10
|
+
{% endif %}
|
|
11
|
+
|
|
12
|
+
<!-- Your name is defined in the _config.yml file -->
|
|
13
|
+
<h1 class="header-name" itemprop="name">{{ site.resume_name }}</h1>
|
|
14
|
+
|
|
15
|
+
<!-- To display contact info here, change `display_header_contact_info` value in _config.yml to true -->
|
|
16
|
+
{% if site.display_header_contact_info == 'true' %}
|
|
17
|
+
<div class="header-contact-info">
|
|
18
|
+
<p>{{ site.resume_header_contact_info }}</p>
|
|
19
|
+
</div>
|
|
20
|
+
{% endif %}
|
|
21
|
+
|
|
22
|
+
<div class="title-bar no-print">
|
|
23
|
+
|
|
24
|
+
<!-- Your title is also defined in the _config.yml file -->
|
|
25
|
+
<h2 class="header-title" itemprop="jobTitle">{{ site.resume_title }}</h2>
|
|
26
|
+
|
|
27
|
+
<!-- This is the markup for the icon links; moved out to an include because it's very verbose, and you shouldn't ever need to edit the markup (unless you want to re-order the icons); if you want to customize which links appear, define them in the _config.yml file -->
|
|
28
|
+
{% include icon-links.html %}
|
|
29
|
+
</div>
|
|
30
|
+
|
|
31
|
+
<div class="executive-summary" itemprop="description">
|
|
32
|
+
{{ site.resume_header_intro }}
|
|
33
|
+
</div>
|
|
34
|
+
|
|
35
|
+
{% if site.resume_looking_for_work == 'yes' %}
|
|
36
|
+
<a href="mailto:{{ site.resume_contact_email }}" class="contact-button no-print" itemprop="email">Contact me</a>
|
|
37
|
+
{% elsif site.resume_looking_for_work == 'no' %}
|
|
38
|
+
<a class="contact-button not-looking no-print">I'm not looking for work right now.</a>
|
|
39
|
+
{% else %}
|
|
40
|
+
{% endif %}
|
|
41
|
+
|
|
42
|
+
</header>
|
|
43
|
+
|
|
44
|
+
{% if site.resume_section_experience %}
|
|
45
|
+
<!-- begin Experience -->
|
|
46
|
+
<section class="content-section">
|
|
47
|
+
|
|
48
|
+
<header class="section-header">
|
|
49
|
+
<h2>Experience</h2>
|
|
50
|
+
</header>
|
|
51
|
+
|
|
52
|
+
{% for job in site.data.experience %}
|
|
53
|
+
<div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
|
|
54
|
+
<h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
|
|
55
|
+
<h4 class="resume-item-details" itemprop="description">{{ job.position }} • {{ job.duration }}</h4>
|
|
56
|
+
<p class="resume-item-copy">{{ job.summary }}</p>
|
|
57
|
+
</div><!-- end of resume-item -->
|
|
58
|
+
{% endfor %}
|
|
59
|
+
|
|
60
|
+
</section>
|
|
61
|
+
<!-- end Experience -->
|
|
62
|
+
{% endif %}
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
{% if site.resume_section_education %}
|
|
66
|
+
<!-- begin Education -->
|
|
67
|
+
<section class="content-section">
|
|
68
|
+
<header class="section-header">
|
|
69
|
+
<h2>Education</h2>
|
|
70
|
+
</header>
|
|
71
|
+
|
|
72
|
+
{% for education in site.data.education %}
|
|
73
|
+
<div class="resume-item" itemscope itemprop="alumniOf" itemtype="http://schema.org/CollegeOrUniversity">
|
|
74
|
+
<h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
|
|
75
|
+
<h4 class="resume-item-details group" itemprop="description">{{ education.degree }} • {{ education.year }}</h4>
|
|
76
|
+
<h5 class="resume-item-details award-title" itemprop="description">{{ education.award }}</h5>
|
|
77
|
+
<p class="resume-item-copy" itemprop="description">
|
|
78
|
+
<ul class="resume-item-list">
|
|
79
|
+
{% for award in education.awards %}
|
|
80
|
+
<li>{{ award.award }}</li>
|
|
81
|
+
{% endfor %}
|
|
82
|
+
</ul>
|
|
83
|
+
|
|
84
|
+
|
|
85
|
+
<p class="resume-item-copy">{{ education.summary }}</p>
|
|
86
|
+
</div>
|
|
87
|
+
{% endfor %}
|
|
88
|
+
</section>
|
|
89
|
+
<!-- end Education -->
|
|
90
|
+
{% endif %}
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
{% if site.resume_section_projects %}
|
|
94
|
+
<!-- begin Projects -->
|
|
95
|
+
<section class="content-section">
|
|
96
|
+
<header class="section-header">
|
|
97
|
+
<h2>Projects</h2>
|
|
98
|
+
</header>
|
|
99
|
+
|
|
100
|
+
{% for project in site.data.projects %}
|
|
101
|
+
<div class="resume-item" itemscope itemtype="http://schema.org/CreativeWork">
|
|
102
|
+
<meta itemprop="creator" content="{{ site.resume_name }}" itemtype="http://schema.org/Person" />
|
|
103
|
+
<h3 class="resume-item-title" itemprop="name">{% if project.url %}<a href="{{ project.url }}" itemprop="url">{{ project.project }}</a>{% else %}{{ project.project }}{% endif %}</h3>
|
|
104
|
+
<h4 class="resume-item-details" itemprop="description">{{ project.role }} • {{ project.duration }}</h4>
|
|
105
|
+
<p class="resume-item-copy">{{ project.description }}</p>
|
|
106
|
+
</div>
|
|
107
|
+
{% endfor %}
|
|
108
|
+
|
|
109
|
+
</section>
|
|
110
|
+
<!-- end Projects -->
|
|
111
|
+
{% endif %}
|
|
112
|
+
|
|
113
|
+
{% if site.resume_section_skills %}
|
|
114
|
+
<!-- begin Skills -->
|
|
115
|
+
<section class="content-section">
|
|
116
|
+
|
|
117
|
+
<header class="section-header">
|
|
118
|
+
<h2>Skills</h2>
|
|
119
|
+
</header>
|
|
120
|
+
{% for skill in site.data.skills %}
|
|
121
|
+
<div class="resume-item">
|
|
122
|
+
<h4 class="resume-item-details">{{ skill.skill }}</h4>
|
|
123
|
+
<p class="resume-item-copy">{{ skill.description }}</p>
|
|
124
|
+
</div>
|
|
125
|
+
{% endfor %}
|
|
126
|
+
|
|
127
|
+
</section>
|
|
128
|
+
<!-- end Skills -->
|
|
129
|
+
{% endif %}
|
|
130
|
+
|
|
131
|
+
{% if site.resume_section_recognition %}
|
|
132
|
+
<!-- begin Recognition -->
|
|
133
|
+
<section class="content-section">
|
|
134
|
+
|
|
135
|
+
<header class="section-header">
|
|
136
|
+
<h2>Recognition</h2>
|
|
137
|
+
</header>
|
|
138
|
+
|
|
139
|
+
{% for recognition in site.data.recognitions %}
|
|
140
|
+
<div class="resume-item">
|
|
141
|
+
<h3 class="resume-item-title" itemprop="award">{{ recognition.award }}</h3>
|
|
142
|
+
<h4 class="resume-item-details">{{ recognition.organization }} • {{ recognition.year }}</h4>
|
|
143
|
+
<p class="resume-item-copy">{{ recognition.summary }}</p>
|
|
144
|
+
</div>
|
|
145
|
+
{% endfor %}
|
|
146
|
+
|
|
147
|
+
</section>
|
|
148
|
+
<!-- end Recognition -->
|
|
149
|
+
{% endif %}
|
|
150
|
+
|
|
151
|
+
{% if site.resume_section_associations %}
|
|
152
|
+
<!-- begin Associations -->
|
|
153
|
+
<section class="content-section">
|
|
154
|
+
|
|
155
|
+
<header class="section-header">
|
|
156
|
+
<h2>Associations</h2>
|
|
157
|
+
</header>
|
|
158
|
+
|
|
159
|
+
{% for association in site.data.associations %}
|
|
160
|
+
<div class="resume-item" itemscope itemprop="memberOf" itemtype="http://schema.org/Organization">
|
|
161
|
+
<h3 class="resume-item-title" itemprop="name">{% if association.url %}<a href="{{ association.url }}">{{ association.organization }}</a>{% else %}{{ association.organization }}{% endif %}</h3>
|
|
162
|
+
<h4 class="resume-item-details" itemprop="description">{{ association.role }} • {{ association.year }}</h4>
|
|
163
|
+
<p class="resume-item-copy">{{ association.summary }}</p>
|
|
164
|
+
</div>
|
|
165
|
+
{% endfor %}
|
|
166
|
+
|
|
167
|
+
</section>
|
|
168
|
+
<!-- end Associations -->
|
|
169
|
+
{% endif %}
|
|
170
|
+
|
|
171
|
+
{% if site.resume_section_interests %}
|
|
172
|
+
<!-- begin Interests -->
|
|
173
|
+
<section class="content-section">
|
|
174
|
+
|
|
175
|
+
<header class="section-header">
|
|
176
|
+
<h2>Outside Interests</h2>
|
|
177
|
+
</header>
|
|
178
|
+
|
|
179
|
+
<div class="resume-item">
|
|
180
|
+
<ul class="resume-item-list">
|
|
181
|
+
{% for interest in site.data.interests %}
|
|
182
|
+
<li>{{ interest.description }}</li>
|
|
183
|
+
{% endfor %}
|
|
184
|
+
</ul>
|
|
185
|
+
</div>
|
|
186
|
+
|
|
187
|
+
</section>
|
|
188
|
+
<!-- end Interests -->
|
|
189
|
+
{% endif %}
|
|
190
|
+
|
|
191
|
+
{% if site.resume_section_links %}
|
|
192
|
+
<!-- begin Links -->
|
|
193
|
+
<section class="content-section">
|
|
194
|
+
|
|
195
|
+
<header class="section-header">
|
|
196
|
+
<h2>Additional Links</h2>
|
|
197
|
+
</header>
|
|
198
|
+
|
|
199
|
+
<div class="resume-item">
|
|
200
|
+
<ul class="resume-item-list">
|
|
201
|
+
{% for link in site.data.links %}
|
|
202
|
+
<li><a href={{ link.url }} itemprop="url">{{ link.description }}</a></li>
|
|
203
|
+
{% endfor %}
|
|
204
|
+
</ul>
|
|
205
|
+
</div>
|
|
206
|
+
|
|
207
|
+
</section>
|
|
208
|
+
<!-- end Links -->
|
|
209
|
+
{% endif %}
|
|
210
|
+
|
|
211
|
+
{% if site.resume_print_social_links %}
|
|
212
|
+
<!-- begin Print Social Links -->
|
|
213
|
+
<section class="content-section print-only">
|
|
214
|
+
|
|
215
|
+
<header class="section-header">
|
|
216
|
+
<h2>Social Links</h2>
|
|
217
|
+
</header>
|
|
218
|
+
|
|
219
|
+
<div class="resume-item">
|
|
220
|
+
{% include print-social-links.html %}
|
|
221
|
+
</div>
|
|
222
|
+
|
|
223
|
+
</section>
|
|
224
|
+
<!-- end Print Social Links -->
|
|
225
|
+
{% endif %}
|
|
226
|
+
|
|
227
|
+
<footer class="page-footer">
|
|
228
|
+
<p class="footer-line">Made by <a href="http://twitter.com/jglovier">@jglovier</a>. Fork me on <a href="https://github.com/jglovier/resume-template">GitHub</a>.</p>
|
|
229
|
+
<p class="footer-line">If this is your live resume, you can modify or remove this part. ;-)</p>
|
|
230
|
+
</footer>
|
|
231
|
+
|
|
232
|
+
</div>
|
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.2
|
|
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-20 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -103,6 +103,7 @@ files:
|
|
|
103
103
|
- _layouts/home.html
|
|
104
104
|
- _layouts/page.html
|
|
105
105
|
- _layouts/post.html
|
|
106
|
+
- _layouts/resume.html
|
|
106
107
|
- _sass/minima.scss
|
|
107
108
|
- _sass/minima/_base.scss
|
|
108
109
|
- _sass/minima/_layout.scss
|