bilingual-jekyll-resume-theme 0.5.0 → 0.5.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/CHANGELOG.md +20 -0
- data/_includes/resume-section-ar.html +5 -5
- data/_includes/resume-section-en.html +5 -5
- data/docs/DATA_GUIDE.md +13 -13
- data/docs/_data/ar/associations.yml +1 -1
- data/docs/_data/ar/education.yml +1 -1
- data/docs/_data/ar/experience.yml +3 -3
- data/docs/_data/ar/projects.yml +2 -2
- data/docs/_data/ar/volunteering.yml +1 -1
- data/docs/_data/en/associations.yml +1 -1
- data/docs/_data/en/education.yml +1 -1
- data/docs/_data/en/experience.yml +3 -3
- data/docs/_data/en/projects.yml +2 -2
- data/docs/_data/en/volunteering.yml +1 -1
- metadata +8 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 7a160407a794060fef19ecf9df069af68dd152f04903fca2df9be92e6739a0e1
|
|
4
|
+
data.tar.gz: 6d8df24a03c4031c201789dafd68785e83841e15c61c096ded7981e431957008
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: fd7ac5fa5738962bf6a1a2f52b0d76809b7d7ceb195b8e16b6d06ea6767b3e8230520f940654cfb33c09d8b56cfca1dfe552fd7707cde23ce46a6ea97f14abd6
|
|
7
|
+
data.tar.gz: e9acabde4734416d1350a24a0aab3356da47bec4f6f37c56752760a667a3387d2eaa2aab57605f35d352a9ef9e25b2a249a7366050b1beacd998f5d5a086a0d8
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,24 @@ 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.5.2] - 2026-05-09
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
* Add GitHub Actions workflow for publishing Ruby gem ([`0f8fd88`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/0f8fd889776fbc4be385c9c55fcbc6dbc04c2938))
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Changed
|
|
14
|
+
* Update GitHub Actions workflow for publishing Ruby gem with improved comments and version compatibility ([`5c2095c`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/5c2095ca4818c34fc75bd214e43f527ba3d4db18))
|
|
15
|
+
|
|
16
|
+
## [0.5.1] - 2026-05-09
|
|
17
|
+
|
|
18
|
+
### Changed
|
|
19
|
+
* Create dependabot.yml ([`7fbe6bb`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/7fbe6bb0ed32903468ff6abb11d2f789bda224aa))
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
### Fixed
|
|
23
|
+
* Replace em dash with en dash in HTML and YAML files ([`2f33ecd`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/2f33ecdd167a3f358c362aaeb2e78ea541623baf))
|
|
24
|
+
|
|
7
25
|
## [0.5.0] - 2025-11-06
|
|
8
26
|
|
|
9
27
|
### Added
|
|
@@ -125,6 +143,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
125
143
|
|
|
126
144
|
* Initial commit (New Theme Template) ([`00af662`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/00af6628dfec7aefe0ef7d7083bf98c9713a5ffd))
|
|
127
145
|
|
|
146
|
+
[0.5.2]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.5.1...0.5.2
|
|
147
|
+
[0.5.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.5.0...v0.5.1
|
|
128
148
|
[0.5.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.4.0...v0.5.0
|
|
129
149
|
[0.4.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.1...v0.4.0
|
|
130
150
|
[0.3.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.0...v0.3.1
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
{%- if role.durations -%}
|
|
25
25
|
{%- for time in role.durations -%} {{ time.duration }} {%- endfor -%}
|
|
26
26
|
{%- else -%}
|
|
27
|
-
{% include ar-date.html date=role.startdate style="MY" %} &
|
|
27
|
+
{% include ar-date.html date=role.startdate style="MY" %} –
|
|
28
28
|
{%- if role.enddate and role.enddate != 'Present' and role.enddate != 'حتى الآن' -%}
|
|
29
29
|
{% include ar-date.html date=role.enddate style="MY" %}
|
|
30
30
|
{%- else -%}
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
<h3 class="resume-item-title" itemprop="award">{{ certification.name }}</h3>
|
|
94
94
|
<h4 class="resume-item-details">
|
|
95
95
|
{{ certification.issuing_organization }} • {% include ar-date.html date=certification.issue_date style="MDY" %}
|
|
96
|
-
{% if certification.expiration %} &
|
|
96
|
+
{% if certification.expiration %} – {% include ar-date.html date=certification.expiration style="MDY" %} {% endif %}
|
|
97
97
|
•
|
|
98
98
|
{% if certification.credential_id %}
|
|
99
99
|
<span class="resume-item-copy-license-cert-id">معرّف الاعتماد:
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<h3 class="resume-item-title" itemprop="award">{{ course.name }}</h3>
|
|
126
126
|
<h4 class="resume-item-details">
|
|
127
127
|
{{ course.issuing_organization }} • {% include ar-date.html date=course.startdate style="MDY" %}
|
|
128
|
-
{% if course.enddate %} &
|
|
128
|
+
{% if course.enddate %} – {% include ar-date.html date=course.enddate style="MDY" %} {% endif %}
|
|
129
129
|
</h4>
|
|
130
130
|
|
|
131
131
|
{% if site.enable_summary == true %}
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
{%- if v.durations -%}
|
|
170
170
|
{%- for time in v.durations -%} {{ time.duration }} {%- endfor -%}
|
|
171
171
|
{%- else -%}
|
|
172
|
-
{% include ar-date.html date=v.startdate style="MY" %} &
|
|
172
|
+
{% include ar-date.html date=v.startdate style="MY" %} –
|
|
173
173
|
{%- if v.enddate and v.enddate != 'Present' and v.enddate != 'حتى الآن' -%}
|
|
174
174
|
{% include ar-date.html date=v.enddate style="MY" %}
|
|
175
175
|
{%- else -%}
|
|
@@ -330,7 +330,7 @@
|
|
|
330
330
|
<td class="lang-cell">
|
|
331
331
|
<p class="lang-entry">
|
|
332
332
|
<span class="resume-item-details">{{ lang.language }}</span>
|
|
333
|
-
&
|
|
333
|
+
–
|
|
334
334
|
<span class="resume-item-copy">{{ lang.description }}</span>
|
|
335
335
|
</p>
|
|
336
336
|
</td>
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
{%- if role.durations -%}
|
|
25
25
|
{%- for time in role.durations -%} {{ time.duration }} {%- endfor -%}
|
|
26
26
|
{%- else -%}
|
|
27
|
-
{{ role.startdate | date: '%b %Y' }} &
|
|
27
|
+
{{ role.startdate | date: '%b %Y' }} –
|
|
28
28
|
{%- if role.enddate and role.enddate != 'Present' -%}
|
|
29
29
|
{{ role.enddate | date: '%b %Y' }}
|
|
30
30
|
{%- else -%}
|
|
@@ -93,7 +93,7 @@
|
|
|
93
93
|
<h3 class="resume-item-title" itemprop="award">{{ certification.name }}</h3>
|
|
94
94
|
<h4 class="resume-item-details">
|
|
95
95
|
{{ certification.issuing_organization }} • {{ certification.issue_date | date: '%b %d, %Y' }}
|
|
96
|
-
{% if certification.expiration %} &
|
|
96
|
+
{% if certification.expiration %} – {{ certification.expiration | date: '%b %d, %Y' }} {% endif %}
|
|
97
97
|
•
|
|
98
98
|
{% if certification.credential_id %}
|
|
99
99
|
<span class="resume-item-copy-license-cert-id">Credential ID:
|
|
@@ -125,7 +125,7 @@
|
|
|
125
125
|
<h3 class="resume-item-title" itemprop="award">{{ course.name }}</h3>
|
|
126
126
|
<h4 class="resume-item-details">
|
|
127
127
|
{{ course.issuing_organization }} • {{ course.startdate | date: '%b %d, %Y' }}
|
|
128
|
-
{% if course.enddate %} &
|
|
128
|
+
{% if course.enddate %} – {{ course.enddate | date: '%b %d, %Y' }} {% endif %}
|
|
129
129
|
</h4>
|
|
130
130
|
|
|
131
131
|
{% if site.enable_summary == true %}
|
|
@@ -169,7 +169,7 @@
|
|
|
169
169
|
{%- if v.durations -%}
|
|
170
170
|
{%- for time in v.durations -%} {{ time.duration }} {%- endfor -%}
|
|
171
171
|
{%- else -%}
|
|
172
|
-
{{ v.startdate | date: '%b %Y' }} &
|
|
172
|
+
{{ v.startdate | date: '%b %Y' }} –
|
|
173
173
|
{%- if v.enddate and v.enddate != 'Present' -%}
|
|
174
174
|
{{ v.enddate | date: '%b %Y' }}
|
|
175
175
|
{%- else -%}
|
|
@@ -329,7 +329,7 @@
|
|
|
329
329
|
<td class="lang-cell">
|
|
330
330
|
<p class="lang-entry">
|
|
331
331
|
<span class="resume-item-details">{{ lang.language }}</span>
|
|
332
|
-
&
|
|
332
|
+
–
|
|
333
333
|
<span class="resume-item-copy">{{ lang.description }}</span>
|
|
334
334
|
</p>
|
|
335
335
|
</td>
|
data/docs/DATA_GUIDE.md
CHANGED
|
@@ -32,7 +32,7 @@ Highlights:
|
|
|
32
32
|
* Certifications: Emphasized that nested courses are NOT displayed (personal record-keeping only)
|
|
33
33
|
* Languages: Explained the two display modes (section vs header) and the descrp_short field purpose
|
|
34
34
|
* Dates: Clear distinction between ISO dates for auto-formatting and display text for manual control
|
|
35
|
-
* HTML Entities: Explained when to use &
|
|
35
|
+
* HTML Entities: Explained when to use – and &
|
|
36
36
|
|
|
37
37
|
## Table of Contents
|
|
38
38
|
|
|
@@ -76,8 +76,8 @@ Jobs are grouped by company name. Multiple roles at the same company will be dis
|
|
|
76
76
|
- company: "State University"
|
|
77
77
|
position: "Lecturer"
|
|
78
78
|
durations: # Alternative: Use this instead of startdate/enddate for non-continuous periods
|
|
79
|
-
- duration: "Jun 2020 &
|
|
80
|
-
- duration: "& Jun 2022 &
|
|
79
|
+
- duration: "Jun 2020 – Jan 2021" # Display text for first period
|
|
80
|
+
- duration: "& Jun 2022 – Dec 2022" # Display text for second period
|
|
81
81
|
location: "Semenyih, Malaysia"
|
|
82
82
|
active: true
|
|
83
83
|
notes:
|
|
@@ -112,7 +112,7 @@ Jobs are grouped by company name. Multiple roles at the same company will be dis
|
|
|
112
112
|
- degree: "Bachelor of Business" # Required: Degree name and details
|
|
113
113
|
active: true # Required: Set to false to hide this entry
|
|
114
114
|
uni: "State University" # Required: University/institution name
|
|
115
|
-
year: "Sep 2020 &
|
|
115
|
+
year: "Sep 2020 – June 2024" # Required: Time period (as display text)
|
|
116
116
|
location: "Sana'a, Yemen" # Required: Location of institution
|
|
117
117
|
awards: # Optional: List of awards/honors received
|
|
118
118
|
- award: "Deans List (2021-2022)"
|
|
@@ -124,7 +124,7 @@ Jobs are grouped by company name. Multiple roles at the same company will be dis
|
|
|
124
124
|
- degree: "High School Diploma"
|
|
125
125
|
active: true
|
|
126
126
|
uni: "Springfield High School"
|
|
127
|
-
year: "2015 &
|
|
127
|
+
year: "2015 – 2019"
|
|
128
128
|
location: "Springfield, IL"
|
|
129
129
|
```
|
|
130
130
|
|
|
@@ -259,7 +259,7 @@ Same as Experience section - grouped by organization, sorted by date.
|
|
|
259
259
|
- project: "Closed Source Project" # Required: Project name
|
|
260
260
|
active: true # Required: Set to false to hide
|
|
261
261
|
role: "Maintainer" # Required: Your role in the project
|
|
262
|
-
duration: "May 2021 &
|
|
262
|
+
duration: "May 2021 – Present" # Required: Time period (as display text)
|
|
263
263
|
url: "https://www.example.com/" # Optional: Project URL
|
|
264
264
|
description: # Required: Project description
|
|
265
265
|
|
|
@@ -267,7 +267,7 @@ Same as Experience section - grouped by organization, sorted by date.
|
|
|
267
267
|
- project: "Open Source Dashboard"
|
|
268
268
|
active: true
|
|
269
269
|
role: "Lead Developer"
|
|
270
|
-
duration: "Jan 2023 &
|
|
270
|
+
duration: "Jan 2023 – Jun 2024"
|
|
271
271
|
url: "https://github.com/username/dashboard"
|
|
272
272
|
description: "Built a real-time analytics dashboard using React and Node.js, serving 10K+ users daily."
|
|
273
273
|
|
|
@@ -275,7 +275,7 @@ Same as Experience section - grouped by organization, sorted by date.
|
|
|
275
275
|
- project: "University Capstone Project"
|
|
276
276
|
active: true
|
|
277
277
|
role: "Team Lead"
|
|
278
|
-
duration: "Sep 2022 &
|
|
278
|
+
duration: "Sep 2022 – May 2023"
|
|
279
279
|
url: ""
|
|
280
280
|
description: "Developed an inventory management system for local businesses."
|
|
281
281
|
```
|
|
@@ -364,7 +364,7 @@ Same as Experience section - grouped by organization, sorted by date.
|
|
|
364
364
|
- organization: "Internet Sociaity" # Required: Organization name
|
|
365
365
|
active: true # Required: Set to false to hide
|
|
366
366
|
role: "Mentor" # Required: Your role/position
|
|
367
|
-
year: "July 2022 &
|
|
367
|
+
year: "July 2022 – Present" # Required: Time period (as display text)
|
|
368
368
|
url: "https://example.com/" # Optional: Organization URL
|
|
369
369
|
summary: # Required: Description of involvement
|
|
370
370
|
|
|
@@ -372,7 +372,7 @@ Same as Experience section - grouped by organization, sorted by date.
|
|
|
372
372
|
- organization: "IEEE Computer Society"
|
|
373
373
|
active: true
|
|
374
374
|
role: "Member"
|
|
375
|
-
year: "2020 &
|
|
375
|
+
year: "2020 – Present"
|
|
376
376
|
url: "https://www.computer.org/"
|
|
377
377
|
summary: "Active participant in local chapter events and technical workshops."
|
|
378
378
|
|
|
@@ -380,7 +380,7 @@ Same as Experience section - grouped by organization, sorted by date.
|
|
|
380
380
|
- organization: "Local Chamber of Commerce"
|
|
381
381
|
active: true
|
|
382
382
|
role: "Board Member"
|
|
383
|
-
year: "2021 &
|
|
383
|
+
year: "2021 – 2023"
|
|
384
384
|
url: ""
|
|
385
385
|
summary: "Served on the technology committee, advising on digital transformation initiatives."
|
|
386
386
|
```
|
|
@@ -535,7 +535,7 @@ intro: "Your professional summary or elevator pitch goes here. This is the Engli
|
|
|
535
535
|
|
|
536
536
|
**For display text fields (year, duration):**
|
|
537
537
|
- Use any text format you want
|
|
538
|
-
- Use `&
|
|
538
|
+
- Use `–` for em dash (—)
|
|
539
539
|
- Use `&` for ampersand (&)
|
|
540
540
|
- HTML entities needed because YAML interprets special characters
|
|
541
541
|
|
|
@@ -558,7 +558,7 @@ Nearly all entries have an `active: true/false` field:
|
|
|
558
558
|
name: "Bachelor's Degree: Computer Science"
|
|
559
559
|
|
|
560
560
|
# HTML entities for display text
|
|
561
|
-
duration: "2020 &
|
|
561
|
+
duration: "2020 – 2023" # em dash
|
|
562
562
|
organization: "Smith & Associates" # ampersand
|
|
563
563
|
|
|
564
564
|
# URLs don't need quotes (unless they contain special YAML characters)
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
- organization: "" # مطلوب: اسم المنظمة
|
|
7
7
|
active: true # مطلوب: اضبط على false لإخفاء هذا الإدخال
|
|
8
8
|
role: "" # مطلوب: دورك/منصبك في المنظمة
|
|
9
|
-
year: "" # مطلوب: الفترة الزمنية (كنص عرض، مثلاً "2020 &
|
|
9
|
+
year: "" # مطلوب: الفترة الزمنية (كنص عرض، مثلاً "2020 – الحاضر" أو "يوليو 2022 – الحاضر")
|
|
10
10
|
url: "" # اختياري: رابط المنظمة (اتركه فارغاً إذا لم يكن هناك رابط)
|
|
11
11
|
summary: "" # اختياري: وصف لانخراطك
|
|
12
12
|
|
data/docs/_data/ar/education.yml
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
- degree: "" # مطلوب: اسم الدرجة والتفاصيل (مثلاً "بكالوريوس العلوم في علوم الحاسب")
|
|
7
7
|
active: true # مطلوب: اضبط على false لإخفاء هذا الإدخال
|
|
8
8
|
uni: "" # مطلوب: اسم الجامعة/المؤسسة
|
|
9
|
-
year: "" # مطلوب: الفترة الزمنية (كنص عرض، مثلاً "سبتمبر 2020 &
|
|
9
|
+
year: "" # مطلوب: الفترة الزمنية (كنص عرض، مثلاً "سبتمبر 2020 – يونيو 2024" أو "2015 – 2019")
|
|
10
10
|
location: "" # مطلوب: موقع المؤسسة (مثلاً "المدينة، الولاية" أو "المدينة، الدولة")
|
|
11
11
|
awards: # اختياري: قائمة الجوائز/الأوسمة المستلمة (استخدم هذا أو حقل الجائزة الواحدة أدناه)
|
|
12
12
|
- award: "" # جائزة أو وسام (يمكن إضافة عناصر متعددة)
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
- company: ""
|
|
32
32
|
position: ""
|
|
33
33
|
durations: # بديل: استخدم هذا بدلاً من startdate/enddate للفترات غير المستمرة
|
|
34
|
-
- duration: "" # نص العرض للفترة الأولى (مثلاً "يونيو 2020 &
|
|
35
|
-
- duration: "" # نص العرض للفترة الثانية (مثلاً "& يونيو 2022 &
|
|
36
|
-
# استخدم & للرمز (&) و &
|
|
34
|
+
- duration: "" # نص العرض للفترة الأولى (مثلاً "يونيو 2020 – يناير 2021")
|
|
35
|
+
- duration: "" # نص العرض للفترة الثانية (مثلاً "& يونيو 2022 – ديسمبر 2022")
|
|
36
|
+
# استخدم & للرمز (&) و – للشرطة الطويلة (—)
|
|
37
37
|
location: ""
|
|
38
38
|
active: true
|
|
39
39
|
notes: ""
|
data/docs/_data/ar/projects.yml
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
- project: "" # مطلوب: اسم المشروع
|
|
7
7
|
active: true # مطلوب: اضبط على false لإخفاء هذا الإدخال
|
|
8
8
|
role: "" # مطلوب: دورك في المشروع (مثلاً "مطور رئيسي"، "قائد فريق"، "مشرف")
|
|
9
|
-
duration: "" # مطلوب: الفترة الزمنية (كنص عرض، مثلاً "مايو 2021 &
|
|
10
|
-
# استخدم &
|
|
9
|
+
duration: "" # مطلوب: الفترة الزمنية (كنص عرض، مثلاً "مايو 2021 – الحاضر" أو "يناير 2023 – يونيو 2024")
|
|
10
|
+
# استخدم – للشرطة الطويلة (—)
|
|
11
11
|
url: "" # اختياري: رابط المشروع (اتركه فارغاً إذا لم يكن هناك رابط، مثلاً مستودع GitHub أو موقع المشروع)
|
|
12
12
|
description: "" # مطلوب: وصف المشروع
|
|
13
13
|
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
durations: # بديل: استخدم هذا بدلاً من startdate/enddate للفترات غير المستمرة
|
|
33
33
|
- duration: "" # نص العرض للفترة الأولى (مثلاً "صيف 2022")
|
|
34
34
|
- duration: "" # نص العرض للفترة الثانية (مثلاً "& شتاء 2021")
|
|
35
|
-
# استخدم & للرمز (&) و &
|
|
35
|
+
# استخدم & للرمز (&) و – للشرطة الطويلة (—)
|
|
36
36
|
location: ""
|
|
37
37
|
active: true
|
|
38
38
|
notes: ""
|
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
- organization: "" # Required: Organization name
|
|
7
7
|
active: true # Required: Set to false to hide this entry
|
|
8
8
|
role: "" # Required: Your role/position in the organization
|
|
9
|
-
year: "" # Required: Time period (as display text, e.g., "2020 &
|
|
9
|
+
year: "" # Required: Time period (as display text, e.g., "2020 – Present" or "July 2022 – Present")
|
|
10
10
|
url: "" # Optional: Organization URL (leave empty if no URL)
|
|
11
11
|
summary: "" # Optional: Description of your involvement
|
|
12
12
|
|
data/docs/_data/en/education.yml
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
- degree: "" # Required: Degree name and details (e.g., "Bachelor of Science in Computer Science")
|
|
7
7
|
active: true # Required: Set to false to hide this entry
|
|
8
8
|
uni: "" # Required: University/institution name
|
|
9
|
-
year: "" # Required: Time period (as display text, e.g., "Sep 2020 &
|
|
9
|
+
year: "" # Required: Time period (as display text, e.g., "Sep 2020 – June 2024" or "2015 – 2019")
|
|
10
10
|
location: "" # Required: Location of institution (e.g., "City, State" or "City, Country")
|
|
11
11
|
awards: # Optional: List of awards/honors received (use this OR the single award field below)
|
|
12
12
|
- award: "" # Award or honor (can add multiple items)
|
|
@@ -31,9 +31,9 @@
|
|
|
31
31
|
- company: ""
|
|
32
32
|
position: ""
|
|
33
33
|
durations: # Alternative: Use this instead of startdate/enddate for non-continuous periods
|
|
34
|
-
- duration: "" # Display text for first period (e.g., "Jun 2020 &
|
|
35
|
-
- duration: "" # Display text for second period (e.g., "& Jun 2022 &
|
|
36
|
-
# Use & for ampersand (&) and &
|
|
34
|
+
- duration: "" # Display text for first period (e.g., "Jun 2020 – Jan 2021")
|
|
35
|
+
- duration: "" # Display text for second period (e.g., "& Jun 2022 – Dec 2022")
|
|
36
|
+
# Use & for ampersand (&) and – for em dash (—)
|
|
37
37
|
location: ""
|
|
38
38
|
active: true
|
|
39
39
|
notes: ""
|
data/docs/_data/en/projects.yml
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
- project: "" # Required: Project name
|
|
7
7
|
active: true # Required: Set to false to hide this entry
|
|
8
8
|
role: "" # Required: Your role in the project (e.g., "Lead Developer", "Team Lead", "Maintainer")
|
|
9
|
-
duration: "" # Required: Time period (as display text, e.g., "May 2021 &
|
|
10
|
-
# Use &
|
|
9
|
+
duration: "" # Required: Time period (as display text, e.g., "May 2021 – Present" or "Jan 2023 – Jun 2024")
|
|
10
|
+
# Use – for em dash (—)
|
|
11
11
|
url: "" # Optional: Project URL (leave empty if no URL, e.g., GitHub repository or project website)
|
|
12
12
|
description: "" # Required: Project description
|
|
13
13
|
|
|
@@ -32,7 +32,7 @@
|
|
|
32
32
|
durations: # Alternative: Use this instead of startdate/enddate for non-continuous periods
|
|
33
33
|
- duration: "" # Display text for first period (e.g., "Summer 2022")
|
|
34
34
|
- duration: "" # Display text for second period (e.g., "& Winter 2021")
|
|
35
|
-
# Use & for ampersand (&) and &
|
|
35
|
+
# Use & for ampersand (&) and – for em dash (—)
|
|
36
36
|
location: ""
|
|
37
37
|
active: true
|
|
38
38
|
notes: ""
|
metadata
CHANGED
|
@@ -1,13 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: bilingual-jekyll-resume-theme
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 0.5.
|
|
4
|
+
version: 0.5.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Khaldoon Mutahar
|
|
8
|
+
autorequire:
|
|
8
9
|
bindir: bin
|
|
9
10
|
cert_chain: []
|
|
10
|
-
date:
|
|
11
|
+
date: 2026-05-09 00:00:00.000000000 Z
|
|
11
12
|
dependencies:
|
|
12
13
|
- !ruby/object:Gem::Dependency
|
|
13
14
|
name: jekyll
|
|
@@ -43,14 +44,14 @@ dependencies:
|
|
|
43
44
|
requirements:
|
|
44
45
|
- - "~>"
|
|
45
46
|
- !ruby/object:Gem::Version
|
|
46
|
-
version: '2.
|
|
47
|
+
version: '2.9'
|
|
47
48
|
type: :runtime
|
|
48
49
|
prerelease: false
|
|
49
50
|
version_requirements: !ruby/object:Gem::Requirement
|
|
50
51
|
requirements:
|
|
51
52
|
- - "~>"
|
|
52
53
|
- !ruby/object:Gem::Version
|
|
53
|
-
version: '2.
|
|
54
|
+
version: '2.9'
|
|
54
55
|
- !ruby/object:Gem::Dependency
|
|
55
56
|
name: jekyll-sitemap
|
|
56
57
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -93,6 +94,7 @@ dependencies:
|
|
|
93
94
|
- - "~>"
|
|
94
95
|
- !ruby/object:Gem::Version
|
|
95
96
|
version: '1.7'
|
|
97
|
+
description:
|
|
96
98
|
email:
|
|
97
99
|
- contact@mutahar.me
|
|
98
100
|
executables: []
|
|
@@ -221,7 +223,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
221
223
|
- !ruby/object:Gem::Version
|
|
222
224
|
version: '0'
|
|
223
225
|
requirements: []
|
|
224
|
-
rubygems_version: 3.
|
|
226
|
+
rubygems_version: 3.4.19
|
|
227
|
+
signing_key:
|
|
225
228
|
specification_version: 4
|
|
226
229
|
summary: A flexible Jekyll theme for creating a clean, data-driven, bilingual (English
|
|
227
230
|
& Arabic) resume.
|