jekyll-theme-lucas-minima 0.1.6 → 0.1.8

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: efbbbf4b1c240ca0fee34512f5f9dad137e831db75b88a9c536b15ac06a55eb7
4
- data.tar.gz: b8ba978cda4f7c1bb91b26aa16a30d85d5c122f46c7f39173541430c53a0fc93
3
+ metadata.gz: d8a130cf13ae06cf81df03114e084d114f7d73560004f393957c7c888af1a41e
4
+ data.tar.gz: d40668f1b3cad7bc18921b4215cd9ef30b9605a145c9769242557de24466f47a
5
5
  SHA512:
6
- metadata.gz: 9c6ee985090ca6061a53dc619d0eae7e111ecadc8a7c6333717b7f6e510eacce5a2e7fe2b11cb90aa3abf9920076cae09b34cf3442eeef4674b68218cb6750cd
7
- data.tar.gz: 8685007dcb7ab41aa836ce74a3439979e294b907df32aa71465d226bedabdb1bb1ca458cde52c5919f5d456aeed97901fff412774223d9cd9bd940b148192a4a
6
+ metadata.gz: 3c12bfe8627e4425ebc0eaec62880eec41527a63d5db0ddd7bda83aa51726ffdde7407b84eb0804d20fe894bd10985ace1aca229f0decbc2731354a5740c6853
7
+ data.tar.gz: e070437b4022992beb0daa481a882028ee3b52dfec848a78945fefdd7a9f8613c0806a9f0a94fb13d480dc8d1f66e0ff5b2f6ca6d8425fb50f9be8bbb116a3c7
data/_includes/head.html CHANGED
@@ -8,4 +8,8 @@
8
8
  {%- if jekyll.environment == 'production' and site.google_analytics -%}
9
9
  {%- include google-analytics.html -%}
10
10
  {%- endif -%}
11
+
12
+ {% if site.resume_theme == 'default' %}
13
+ <link href='https://fonts.googleapis.com/css?family=Lora:400,700|Open+Sans:400,300,800,700' rel='stylesheet' type='text/css'>
14
+ {% endif %}
11
15
  </head>
@@ -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
- <a class="page-link" href="{{ my_page.url | relative_url }}">{{ my_page.title | escape }}</a>
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>
@@ -0,0 +1,10 @@
1
+ ---
2
+ layout: default
3
+ ---
4
+ <article class="post">
5
+
6
+ <div class="post-content">
7
+ {{ content }}
8
+ </div>
9
+
10
+ </article>
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 src="images/avatar.jpg" alt="my photo" class="avatar no-print" itemprop="image">
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,49 @@ 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
 
45
- </header>
49
+ {% if site.resume_looking_for_work == 'yes' %}
50
+ <div class="contact-info no-print">
51
+ <p>Email: <a href="mailto:{{ site.resume_contact_email }}">{{ site.resume_contact_email }}</a></p>
52
+ <p>Contact: {{ site.resume_contact_number }}</p>
53
+ </div>
54
+ {% elsif site.resume_looking_for_work == 'no' %}
55
+ <p class="contact-info not-looking no-print">I'm not looking for work right now.</p>
56
+ {% else %} {% endif %}
57
+
58
+
46
59
 
47
60
  {% if site.resume_section_experience %}
48
61
  <!-- begin Experience -->
49
62
  <section class="content-section">
50
-
51
63
  <header class="section-header">
52
64
  <h2>Experience</h2>
53
65
  </header>
54
66
 
55
67
  {% for job in site.data.experience %}
56
- <div class="resume-item" itemscope itemprop="worksFor" itemtype="http://schema.org/Organization">
68
+ <div
69
+ class="resume-item"
70
+ itemscope
71
+ itemprop="worksFor"
72
+ itemtype="http://schema.org/Organization"
73
+ >
57
74
  <h3 class="resume-item-title" itemprop="name">{{ job.company }}</h3>
58
- <h4 class="resume-item-details" itemprop="description">{{ job.position }} &bull; {{ job.duration }}</h4>
75
+ <h4 class="resume-item-details" itemprop="description">
76
+ {{ job.position }} &bull; {{ job.duration }}
77
+ </h4>
59
78
  <p class="resume-item-copy">{{ job.summary }}</p>
60
- </div><!-- end of resume-item -->
79
+ </div>
80
+ <!-- end of resume-item -->
61
81
  {% endfor %}
62
-
63
82
  </section>
64
83
  <!-- end Experience -->
65
- {% endif %}
66
-
67
-
68
- {% if site.resume_section_education %}
84
+ {% endif %} {% if site.resume_section_education %}
69
85
  <!-- begin Education -->
70
86
  <section class="content-section">
71
87
  <header class="section-header">
@@ -73,27 +89,32 @@ layout: page
73
89
  </header>
74
90
 
75
91
  {% for education in site.data.education %}
76
- <div class="resume-item" itemscope itemprop="alumniOf" itemtype="http://schema.org/CollegeOrUniversity">
92
+ <div
93
+ class="resume-item"
94
+ itemscope
95
+ itemprop="alumniOf"
96
+ itemtype="http://schema.org/CollegeOrUniversity"
97
+ >
77
98
  <h3 class="resume-item-title" itemprop="name">{{ education.uni }}</h3>
78
- <h4 class="resume-item-details group" itemprop="description">{{ education.degree }} &bull; {{ education.year }}</h4>
79
- <h5 class="resume-item-details award-title" itemprop="description">{{ education.award }}</h5>
80
- <p class="resume-item-copy" itemprop="description">
81
- <ul class="resume-item-list">
82
- {% for award in education.awards %}
83
- <li>{{ award.award }}</li>
84
- {% endfor %}
85
- </ul>
86
-
99
+ <h4 class="resume-item-details group" itemprop="description">
100
+ {{ education.degree }} &bull; {{ education.year }}
101
+ </h4>
102
+ <h5 class="resume-item-details award-title" itemprop="description">
103
+ {{ education.award }}
104
+ </h5>
105
+ <p class="resume-item-copy" itemprop="description"></p>
106
+ <ul class="resume-item-list">
107
+ {% for award in education.awards %}
108
+ <li>{{ award.award }}</li>
109
+ {% endfor %}
110
+ </ul>
87
111
 
88
112
  <p class="resume-item-copy">{{ education.summary }}</p>
89
113
  </div>
90
114
  {% endfor %}
91
115
  </section>
92
116
  <!-- end Education -->
93
- {% endif %}
94
-
95
-
96
- {% if site.resume_section_projects %}
117
+ {% endif %} {% if site.resume_section_projects %}
97
118
  <!-- begin Projects -->
98
119
  <section class="content-section">
99
120
  <header class="section-header">
@@ -101,22 +122,32 @@ layout: page
101
122
  </header>
102
123
 
103
124
  {% for project in site.data.projects %}
104
- <div class="resume-item" itemscope itemtype="http://schema.org/CreativeWork">
105
- <meta itemprop="creator" content="{{ site.resume_name }}" itemtype="http://schema.org/Person" />
106
- <h3 class="resume-item-title" itemprop="name">{% if project.url %}<a href="{{ project.url }}" itemprop="url">{{ project.project }}</a>{% else %}{{ project.project }}{% endif %}</h3>
107
- <h4 class="resume-item-details" itemprop="description">{{ project.role }} &bull; {{ project.duration }}</h4>
125
+ <div
126
+ class="resume-item"
127
+ itemscope
128
+ itemtype="http://schema.org/CreativeWork"
129
+ >
130
+ <meta
131
+ itemprop="creator"
132
+ content="{{ site.resume_name }}"
133
+ itemtype="http://schema.org/Person"
134
+ />
135
+ <h3 class="resume-item-title" itemprop="name">
136
+ {% if project.url %}<a href="{{ project.url }}" itemprop="url"
137
+ >{{ project.project }}</a
138
+ >{% else %}{{ project.project }}{% endif %}
139
+ </h3>
140
+ <h4 class="resume-item-details" itemprop="description">
141
+ {{ project.role }} &bull; {{ project.duration }}
142
+ </h4>
108
143
  <p class="resume-item-copy">{{ project.description }}</p>
109
144
  </div>
110
145
  {% endfor %}
111
-
112
146
  </section>
113
147
  <!-- end Projects -->
114
- {% endif %}
115
-
116
- {% if site.resume_section_skills %}
148
+ {% endif %} {% if site.resume_section_skills %}
117
149
  <!-- begin Skills -->
118
150
  <section class="content-section">
119
-
120
151
  <header class="section-header">
121
152
  <h2>Skills</h2>
122
153
  </header>
@@ -126,55 +157,58 @@ layout: page
126
157
  <p class="resume-item-copy">{{ skill.description }}</p>
127
158
  </div>
128
159
  {% endfor %}
129
-
130
160
  </section>
131
161
  <!-- end Skills -->
132
- {% endif %}
133
-
134
- {% if site.resume_section_recognition %}
162
+ {% endif %} {% if site.resume_section_recognition %}
135
163
  <!-- begin Recognition -->
136
164
  <section class="content-section">
137
-
138
165
  <header class="section-header">
139
166
  <h2>Recognition</h2>
140
167
  </header>
141
168
 
142
169
  {% for recognition in site.data.recognitions %}
143
170
  <div class="resume-item">
144
- <h3 class="resume-item-title" itemprop="award">{{ recognition.award }}</h3>
145
- <h4 class="resume-item-details">{{ recognition.organization }} &bull; {{ recognition.year }}</h4>
171
+ <h3 class="resume-item-title" itemprop="award">
172
+ {{ recognition.award }}
173
+ </h3>
174
+ <h4 class="resume-item-details">
175
+ {{ recognition.organization }} &bull; {{ recognition.year }}
176
+ </h4>
146
177
  <p class="resume-item-copy">{{ recognition.summary }}</p>
147
178
  </div>
148
179
  {% endfor %}
149
-
150
180
  </section>
151
181
  <!-- end Recognition -->
152
- {% endif %}
153
-
154
- {% if site.resume_section_associations %}
182
+ {% endif %} {% if site.resume_section_associations %}
155
183
  <!-- begin Associations -->
156
184
  <section class="content-section">
157
-
158
185
  <header class="section-header">
159
186
  <h2>Associations</h2>
160
187
  </header>
161
188
 
162
189
  {% for association in site.data.associations %}
163
- <div class="resume-item" itemscope itemprop="memberOf" itemtype="http://schema.org/Organization">
164
- <h3 class="resume-item-title" itemprop="name">{% if association.url %}<a href="{{ association.url }}">{{ association.organization }}</a>{% else %}{{ association.organization }}{% endif %}</h3>
165
- <h4 class="resume-item-details" itemprop="description">{{ association.role }} &bull; {{ association.year }}</h4>
190
+ <div
191
+ class="resume-item"
192
+ itemscope
193
+ itemprop="memberOf"
194
+ itemtype="http://schema.org/Organization"
195
+ >
196
+ <h3 class="resume-item-title" itemprop="name">
197
+ {% if association.url %}<a href="{{ association.url }}"
198
+ >{{ association.organization }}</a
199
+ >{% else %}{{ association.organization }}{% endif %}
200
+ </h3>
201
+ <h4 class="resume-item-details" itemprop="description">
202
+ {{ association.role }} &bull; {{ association.year }}
203
+ </h4>
166
204
  <p class="resume-item-copy">{{ association.summary }}</p>
167
205
  </div>
168
206
  {% endfor %}
169
-
170
207
  </section>
171
208
  <!-- end Associations -->
172
- {% endif %}
173
-
174
- {% if site.resume_section_interests %}
209
+ {% endif %} {% if site.resume_section_interests %}
175
210
  <!-- begin Interests -->
176
211
  <section class="content-section">
177
-
178
212
  <header class="section-header">
179
213
  <h2>Outside Interests</h2>
180
214
  </header>
@@ -186,15 +220,11 @@ layout: page
186
220
  {% endfor %}
187
221
  </ul>
188
222
  </div>
189
-
190
223
  </section>
191
224
  <!-- end Interests -->
192
- {% endif %}
193
-
194
- {% if site.resume_section_links %}
225
+ {% endif %} {% if site.resume_section_links %}
195
226
  <!-- begin Links -->
196
227
  <section class="content-section">
197
-
198
228
  <header class="section-header">
199
229
  <h2>Additional Links</h2>
200
230
  </header>
@@ -202,34 +232,33 @@ layout: page
202
232
  <div class="resume-item">
203
233
  <ul class="resume-item-list">
204
234
  {% for link in site.data.links %}
205
- <li><a href={{ link.url }} itemprop="url">{{ link.description }}</a></li>
235
+ <li>
236
+ <a href="{{" link.url }} itemprop="url">{{ link.description }}</a>
237
+ </li>
206
238
  {% endfor %}
207
239
  </ul>
208
240
  </div>
209
-
210
241
  </section>
211
242
  <!-- end Links -->
212
- {% endif %}
213
-
214
- {% if site.resume_print_social_links %}
243
+ {% endif %} {% if site.resume_print_social_links %}
215
244
  <!-- begin Print Social Links -->
216
245
  <section class="content-section print-only">
217
-
218
246
  <header class="section-header">
219
247
  <h2>Social Links</h2>
220
248
  </header>
221
249
 
222
- <div class="resume-item">
223
- {% include print-social-links.html %}
224
- </div>
225
-
250
+ <div class="resume-item">{% include print-social-links.html %}</div>
226
251
  </section>
227
252
  <!-- end Print Social Links -->
228
253
  {% endif %}
229
254
 
230
255
  <footer class="page-footer">
231
- <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>
232
- <p class="footer-line">If this is your live resume, you can modify or remove this part. ;-)</p>
256
+ <p class="footer-line">
257
+ Made by <a href="http://twitter.com/jglovier">@jglovier</a>. Fork me on
258
+ <a href="https://github.com/jglovier/resume-template">GitHub</a>.
259
+ </p>
260
+ <p class="footer-line">
261
+ If this is your live resume, you can modify or remove this part. ;-)
262
+ </p>
233
263
  </footer>
234
-
235
264
  </div>
data/_sass/_resume.scss CHANGED
@@ -130,6 +130,35 @@
130
130
  &.not-looking { width: 400px; }
131
131
  }
132
132
 
133
+ .contact-info {
134
+ margin: 1.5rem auto;
135
+ width: 300px;
136
+ text-align: left;
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: #9c9c9c;
150
+ font-weight: bold;
151
+ }
152
+ }
153
+ }
154
+ }
155
+
156
+ .not-looking {
157
+ width: 400px;
158
+ text-align: center;
159
+ }
160
+
161
+
133
162
  // resume content styles
134
163
 
135
164
  .content-section {
@@ -39,14 +39,30 @@
39
39
  .page-link {
40
40
  color: $text-color;
41
41
  line-height: $base-line-height;
42
+ position: relative;
42
43
 
43
44
  // Gaps between nav items, but not on the last one
44
45
  &:not(:last-child) {
45
46
  margin-right: 20px;
46
47
  }
48
+
49
+ &.active {
50
+ background-color: #000; // Set the background color for the active page
51
+ color: #fff; // Set the text color for the active page
52
+ border-radius: 5px; // Add rounded corners to create a button-like effect
53
+ padding: 5px 10px; // Add padding for better appearance
54
+ position: relative;
55
+ }
47
56
  }
48
57
 
49
58
  @include media-query($on-palm) {
59
+ &.active {
60
+ background-color: #000;
61
+ color: #fff;
62
+ border-radius: 5px;
63
+ padding: 5px 10px;
64
+ }
65
+
50
66
  position: absolute;
51
67
  top: 9px;
52
68
  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.6
4
+ version: 0.1.8
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-20 00:00:00.000000000 Z
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