bilingual-jekyll-resume-theme 0.3.0 → 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 +4 -4
- data/CHANGELOG.md +22 -0
- data/_includes/resume-section-ar.html +9 -3
- data/_includes/resume-section-en.html +9 -4
- data/_layouts/resume-ar.html +4 -2
- data/_layouts/resume-en.html +3 -1
- data/docs/CONFIG_GUIDE.md +5 -0
- data/docs/LAYOUTS_GUIDE.md +1 -1
- data/docs/_config.sample.yml +7 -1
- metadata +17 -7
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 0ab3eac8ae8c6374766ccab55029e67f10807e0929e9148d383ad6ce1ea9db75
|
|
4
|
+
data.tar.gz: d63cbf252a02a4c3a596d2b66519cc358b96746645fc3e3efb76f1afb9e437dc
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: c7a1b38a61d6bde782a5134a8ad35e58fb72f302f4edab3e044c96751900e3f9fadd196e23f6fcaff4a24da688ba535632ce9fd8fb57691981ff2931d0bdc229
|
|
7
|
+
data.tar.gz: f44183fc08c72d6bd4b18921ca4a49ee80ce95235338af147e44433bd370c3a32dbbe4f29c587c2ed252d9540a62d8b93cd66d836133951adc42df9a756ce235
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,26 @@ 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
|
+
|
|
22
|
+
## [0.3.1] - 2025-11-03
|
|
23
|
+
|
|
24
|
+
### Added
|
|
25
|
+
* Add arabic name to resume and config file ([`c6b224d`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/c6b224d13f8602b8b6f30d0d630817dc6fa55e3a))
|
|
26
|
+
|
|
7
27
|
## [0.3.0] - 2025-11-03
|
|
8
28
|
|
|
9
29
|
### Added
|
|
@@ -78,6 +98,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
78
98
|
|
|
79
99
|
* Initial commit (New Theme Template) ([`00af662`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/00af6628dfec7aefe0ef7d7083bf98c9713a5ffd))
|
|
80
100
|
|
|
101
|
+
[0.4.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.1...v0.4.0
|
|
102
|
+
[0.3.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.0...v0.3.1
|
|
81
103
|
[0.3.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.2.0...v0.3.0
|
|
82
104
|
[0.2.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.1.1...v0.2.0
|
|
83
105
|
[0.1.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.1.0...v0.1.1
|
|
@@ -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
|
-
|
|
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 }} • {{ recognition.year }}</h4>
|
|
254
|
-
|
|
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 }} • {{ association.year }}</h4>
|
|
284
|
-
|
|
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
|
-
|
|
236
|
-
|
|
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 }} • {{ recognition.year }}</h4>
|
|
254
|
-
|
|
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 }} • {{ association.year }}</h4>
|
|
284
|
-
|
|
287
|
+
{% if association.summary %}
|
|
288
|
+
<p class="resume-item-copy">{{ association.summary }}</p>
|
|
289
|
+
{% endif %}
|
|
285
290
|
</div>
|
|
286
291
|
{% endif %}
|
|
287
292
|
{% endfor %}
|
data/_layouts/resume-ar.html
CHANGED
|
@@ -173,7 +173,7 @@ resume_data.experience == site.data['2025-06']['20250621-PM'].experience
|
|
|
173
173
|
|
|
174
174
|
<!-- Your name is defined in the _config.yml file -->
|
|
175
175
|
<h1 class="header-name" itemprop="name">
|
|
176
|
-
{{ site.
|
|
176
|
+
{{ site.name_ar.first }} {{ site.name_ar.middle }} {{ site.name_ar.last }}
|
|
177
177
|
</h1>
|
|
178
178
|
|
|
179
179
|
{% if site.display_header_contact_info == true %}
|
|
@@ -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
|
-
{{
|
|
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>
|
data/_layouts/resume-en.html
CHANGED
|
@@ -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
|
-
{{
|
|
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>
|
data/docs/CONFIG_GUIDE.md
CHANGED
|
@@ -69,6 +69,7 @@ That’s enough to render a working resume using data from `_data/`.
|
|
|
69
69
|
- url: Full site URL (protocol + host). Used for SEO and absolute links.
|
|
70
70
|
- title: Site title (footer and SEO).
|
|
71
71
|
- name.first, name.last: Appears in the header (`middle` is optional).
|
|
72
|
+
- use `name_ar.` for arabic version of name
|
|
72
73
|
- resume_title: English job title shown in header.
|
|
73
74
|
- contact_info.email: Needed if `resume_looking_for_work: true` (for the contact button).
|
|
74
75
|
|
|
@@ -206,6 +207,10 @@ name:
|
|
|
206
207
|
first: Jane
|
|
207
208
|
middle: Q.
|
|
208
209
|
last: Doe
|
|
210
|
+
name_ar:
|
|
211
|
+
first:
|
|
212
|
+
middle:
|
|
213
|
+
last:
|
|
209
214
|
resume_title: Senior Product Manager
|
|
210
215
|
resume_title_ar: مديرة منتج أولى
|
|
211
216
|
|
data/docs/LAYOUTS_GUIDE.md
CHANGED
|
@@ -140,7 +140,7 @@ active_resume_path: 2025-06.20250621-PM
|
|
|
140
140
|
|
|
141
141
|
### 2) Header
|
|
142
142
|
- Optional avatar (toggle via `site.resume_avatar`)
|
|
143
|
-
- Name from `site.name.first|middle|last`
|
|
143
|
+
- Name from `site.name.first|middle|last` and/or `site.name_ar.first|middle|last`
|
|
144
144
|
- Optional contact row (`site.display_header_contact_info`) showing phone/email/address and DoB
|
|
145
145
|
- When `site.enable_live` is true, uses `phone_live` and `email_live`; otherwise `phone` and `email`
|
|
146
146
|
- Small inline icons are included from `vendors/lineicons-v4.0/`
|
data/docs/_config.sample.yml
CHANGED
|
@@ -17,6 +17,11 @@ name:
|
|
|
17
17
|
middle: "Middle"
|
|
18
18
|
last: "Lastname"
|
|
19
19
|
|
|
20
|
+
name_ar: # Arabic name (optional if not using Arabic)
|
|
21
|
+
first: "Your"
|
|
22
|
+
middle: "Middle"
|
|
23
|
+
last: "Lastname"
|
|
24
|
+
|
|
20
25
|
resume_title: "Your Job Title" # English job title
|
|
21
26
|
resume_title_ar: "مسماك الوظيفي" # Arabic job title (optional if not using Arabic)
|
|
22
27
|
|
|
@@ -67,7 +72,8 @@ active_resume_path_ar: "ar" # ath to Arabic data (empty = root _data/)
|
|
|
67
72
|
# Header and intro
|
|
68
73
|
resume_avatar: true # Show profile picture
|
|
69
74
|
display_header_contact_info: true # Show contact info in header
|
|
70
|
-
|
|
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
|
|
71
77
|
|
|
72
78
|
# Job search status
|
|
73
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.
|
|
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:
|
|
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
|
-
|
|
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.
|
|
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.
|