bilingual-jekyll-resume-theme 0.3.1 → 0.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 82f9ca0be84e6576a493181eb0efe5878302db7196f3843f8468d2048a975995
4
- data.tar.gz: 9b477efb312e3a1e6d71c3ac8e6ab4e95c04f3a2053ec7042412fc659b6148df
3
+ metadata.gz: 0ab3eac8ae8c6374766ccab55029e67f10807e0929e9148d383ad6ce1ea9db75
4
+ data.tar.gz: d63cbf252a02a4c3a596d2b66519cc358b96746645fc3e3efb76f1afb9e437dc
5
5
  SHA512:
6
- metadata.gz: 4cb13f53c7a175d3e353ad4bf169786d314c79c838b0aafafba6d57fec578b82fecf5171ae4cbac95f9c2ea2080146e7ae74d0b8067e4c834932af60c4172325
7
- data.tar.gz: 14a87ccc8f9ed64072ac5b210ed74e0047753a274987e2fd52c527cb728c7bb2f6e3aab22a091299051b8bdefbd8387966b524d0f61302ef835516fee4f9b19f
6
+ metadata.gz: c7a1b38a61d6bde782a5134a8ad35e58fb72f302f4edab3e044c96751900e3f9fadd196e23f6fcaff4a24da688ba535632ce9fd8fb57691981ff2931d0bdc229
7
+ data.tar.gz: f44183fc08c72d6bd4b18921ca4a49ee80ce95235338af147e44433bd370c3a32dbbe4f29c587c2ed252d9540a62d8b93cd66d836133951adc42df9a756ce235
data/CHANGELOG.md CHANGED
@@ -4,6 +4,21 @@ All notable changes to this project will be documented in this file.
4
4
 
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
+ ## [0.4.0] - 2025-11-05
8
+
9
+ ### Added
10
+ * Add logger as explicit dependency ([`327702b`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/327702beb3383375172401d8f5869ee3ab3f50a9))
11
+
12
+
13
+ ### Changed
14
+ * Move intro text from _config to data file ([`d026de9`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/d026de92817b3de76843e18b8770c20136ae0691))
15
+
16
+ * Make summary optional in association.yml ([`a12cdc8`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/a12cdc8b9d64db5c3368db6dc270c03a4f353538))
17
+
18
+ * Make summary optional in recognition.yml ([`34b4661`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/34b46613dc561a3d1868fdf8d64f7cfd80e02e5d))
19
+
20
+ * Make description optional in skills.yml ([`601dbf9`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/601dbf9d81a621366d3a0e46f7079da42aa73e75))
21
+
7
22
  ## [0.3.1] - 2025-11-03
8
23
 
9
24
  ### Added
@@ -83,6 +98,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
83
98
 
84
99
  * Initial commit (New Theme Template) ([`00af662`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/00af6628dfec7aefe0ef7d7083bf98c9713a5ffd))
85
100
 
101
+ [0.4.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.1...v0.4.0
86
102
  [0.3.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.0...v0.3.1
87
103
  [0.3.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.2.0...v0.3.0
88
104
  [0.2.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.1.1...v0.2.0
@@ -200,7 +200,7 @@
200
200
  {% for project in resume_data.projects %}
201
201
  {% if project.active == true %}
202
202
  <div class="resume-item" itemscope itemtype="http://schema.org/CreativeWork">
203
- <meta itemprop="creator" content="{{ site.name_ar.first }} {{ site.name_ar.middle }} {{ site.name_ar.last }}" itemtype="http://schema.org/Person" />
203
+ <meta itemprop="creator" content="{{ site.name.first }} {{ site.name.middle }} {{ site.name.last }}" itemtype="http://schema.org/Person" />
204
204
  <h3 class="resume-item-title" itemprop="name" style="display: inline-block;">
205
205
  {% if project.url %}
206
206
  <a href="{{ project.url }}" target="_blank" rel="noopener nofollow noreferrer" itemprop="url">{{ project.project }}</a>
@@ -232,7 +232,9 @@
232
232
  {% if skill.active == true %}
233
233
  <div class="resume-item">
234
234
  <h4 class="resume-item-details">{{ skill.skill }}</h4>
235
- <p class="resume-item-copy">{{ skill.description }}</p>
235
+ {% if skill.description %}
236
+ <p class="resume-item-copy">{{ skill.description }}</p>
237
+ {% endif %}
236
238
  </div>
237
239
  {% endif %}
238
240
  {% endfor %}
@@ -251,7 +253,9 @@
251
253
  <div class="resume-item">
252
254
  <h3 class="resume-item-title" itemprop="award">{{ recognition.award }}</h3>
253
255
  <h4 class="resume-item-details">{{ recognition.organization }} &bull; {{ recognition.year }}</h4>
254
- <p class="resume-item-copy">{{ recognition.summary }}</p>
256
+ {% if recognition.summary %}
257
+ <p class="resume-item-copy">{{ recognition.summary }}</p>
258
+ {% endif %}
255
259
  </div>
256
260
  {% endif %}
257
261
  {% endfor %}
@@ -281,7 +285,9 @@
281
285
  {% endif %}
282
286
 
283
287
  <h4 class="resume-item-details" itemprop="description">{{ association.role }} &bull; {{ association.year }}</h4>
284
- <p class="resume-item-copy">{{ association.summary }}</p>
288
+ {% if association.summary %}
289
+ <p class="resume-item-copy">{{ association.summary }}</p>
290
+ {% endif %}
285
291
  </div>
286
292
  {% endif %}
287
293
  {% endfor %}
@@ -232,8 +232,9 @@
232
232
  {% if skill.active == true %}
233
233
  <div class="resume-item">
234
234
  <h4 class="resume-item-details">{{ skill.skill }}</h4>
235
- <p class="resume-item-copy">{{ skill.description }}</p>
236
- </div>
235
+ {% if skill.description %}
236
+ <p class="resume-item-copy">{{ skill.description }}</p>
237
+ {% endif %} </div>
237
238
  {% endif %}
238
239
  {% endfor %}
239
240
  </section>
@@ -251,7 +252,9 @@
251
252
  <div class="resume-item">
252
253
  <h3 class="resume-item-title" itemprop="award">{{ recognition.award }}</h3>
253
254
  <h4 class="resume-item-details">{{ recognition.organization }} &bull; {{ recognition.year }}</h4>
254
- <p class="resume-item-copy">{{ recognition.summary }}</p>
255
+ {% if recognition.summary %}
256
+ <p class="resume-item-copy">{{ recognition.summary }}</p>
257
+ {% endif %}
255
258
  </div>
256
259
  {% endif %}
257
260
  {% endfor %}
@@ -281,7 +284,9 @@
281
284
  {% endif %}
282
285
 
283
286
  <h4 class="resume-item-details" itemprop="description">{{ association.role }} &bull; {{ association.year }}</h4>
284
- <p class="resume-item-copy">{{ association.summary }}</p>
287
+ {% if association.summary %}
288
+ <p class="resume-item-copy">{{ association.summary }}</p>
289
+ {% endif %}
285
290
  </div>
286
291
  {% endif %}
287
292
  {% endfor %}
@@ -235,9 +235,11 @@ resume_data.experience == site.data['2025-06']['20250621-PM'].experience
235
235
  {% endif %}
236
236
  </div>
237
237
 
238
+ {% if site.resume_header_intro_ar == true %}
238
239
  <div class="executive-summary" itemprop="description">
239
- {{ site.resume_header_intro }}
240
+ <p>{{ resume_data.header.intro }}</p>
240
241
  </div>
242
+ {% endif %}
241
243
 
242
244
  {% if site.resume_looking_for_work == true %}
243
245
  <a href="mailto:{{ site.contact_info.email }}" class="contact-button no-print" itemprop="email">تواصل معي</a>
@@ -235,9 +235,11 @@ resume_data.experience == site.data['2025-06']['20250621-PM'].experience
235
235
  {% endif %}
236
236
  </div>
237
237
 
238
+ {% if site.resume_header_intro_en == true %}
238
239
  <div class="executive-summary" itemprop="description">
239
- {{ site.resume_header_intro }}
240
+ <p>{{ resume_data.header.intro }}</p>
240
241
  </div>
242
+ {% endif %}
241
243
 
242
244
  {% if site.resume_looking_for_work == true %}
243
245
  <a href="mailto:{{ site.contact_info.email }}" class="contact-button no-print" itemprop="email">Contact me</a>
@@ -72,7 +72,8 @@ active_resume_path_ar: "ar" # ath to Arabic data (empty = root _data/)
72
72
  # Header and intro
73
73
  resume_avatar: true # Show profile picture
74
74
  display_header_contact_info: true # Show contact info in header
75
- resume_header_intro: "<p>Your professional summary or elevator pitch goes here.</p>"
75
+ resume_header_intro_en: true # Show English intro paragraph below name/title in header
76
+ resume_header_intro_ar: false # Show Arabic intro paragraph below name/title in header
76
77
 
77
78
  # Job search status
78
79
  # use "true" to display the email contact button,
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: bilingual-jekyll-resume-theme
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.3.1
4
+ version: 0.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Khaldoon Mutahar
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2025-11-03 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: jekyll
@@ -80,7 +79,20 @@ dependencies:
80
79
  - - ">="
81
80
  - !ruby/object:Gem::Version
82
81
  version: '0'
83
- description:
82
+ - !ruby/object:Gem::Dependency
83
+ name: logger
84
+ requirement: !ruby/object:Gem::Requirement
85
+ requirements:
86
+ - - ">="
87
+ - !ruby/object:Gem::Version
88
+ version: '0'
89
+ type: :runtime
90
+ prerelease: false
91
+ version_requirements: !ruby/object:Gem::Requirement
92
+ requirements:
93
+ - - ">="
94
+ - !ruby/object:Gem::Version
95
+ version: '0'
84
96
  email:
85
97
  - contact@mutahar.me
86
98
  executables: []
@@ -159,7 +171,6 @@ metadata:
159
171
  documentation_uri: https://github.com/kmutahar/bilingual-jekyll-resume-theme#readme
160
172
  homepage_uri: https://www.mutahr.me/bilingual-jekyll-resume-theme
161
173
  source_code_uri: https://github.com/kmutahar/bilingual-jekyll-resume-theme/
162
- post_install_message:
163
174
  rdoc_options: []
164
175
  require_paths:
165
176
  - lib
@@ -174,8 +185,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
174
185
  - !ruby/object:Gem::Version
175
186
  version: '0'
176
187
  requirements: []
177
- rubygems_version: 3.4.20
178
- signing_key:
188
+ rubygems_version: 3.7.2
179
189
  specification_version: 4
180
190
  summary: A flexible Jekyll theme for creating a clean, data-driven, bilingual (English
181
191
  & Arabic) resume.