bilingual-jekyll-resume-theme 0.3.0 → 0.3.1
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 +6 -0
- data/_includes/resume-section-ar.html +1 -1
- data/_layouts/resume-ar.html +1 -1
- data/docs/CONFIG_GUIDE.md +5 -0
- data/docs/LAYOUTS_GUIDE.md +1 -1
- data/docs/_config.sample.yml +5 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 82f9ca0be84e6576a493181eb0efe5878302db7196f3843f8468d2048a975995
|
|
4
|
+
data.tar.gz: 9b477efb312e3a1e6d71c3ac8e6ab4e95c04f3a2053ec7042412fc659b6148df
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4cb13f53c7a175d3e353ad4bf169786d314c79c838b0aafafba6d57fec578b82fecf5171ae4cbac95f9c2ea2080146e7ae74d0b8067e4c834932af60c4172325
|
|
7
|
+
data.tar.gz: 14a87ccc8f9ed64072ac5b210ed74e0047753a274987e2fd52c527cb728c7bb2f6e3aab22a091299051b8bdefbd8387966b524d0f61302ef835516fee4f9b19f
|
data/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ 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.3.1] - 2025-11-03
|
|
8
|
+
|
|
9
|
+
### Added
|
|
10
|
+
* Add arabic name to resume and config file ([`c6b224d`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/c6b224d13f8602b8b6f30d0d630817dc6fa55e3a))
|
|
11
|
+
|
|
7
12
|
## [0.3.0] - 2025-11-03
|
|
8
13
|
|
|
9
14
|
### Added
|
|
@@ -78,6 +83,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
78
83
|
|
|
79
84
|
* Initial commit (New Theme Template) ([`00af662`](https://github.com/kmutahar/bilingual-jekyll-resume-theme/commit/00af6628dfec7aefe0ef7d7083bf98c9713a5ffd))
|
|
80
85
|
|
|
86
|
+
[0.3.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.3.0...v0.3.1
|
|
81
87
|
[0.3.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.2.0...v0.3.0
|
|
82
88
|
[0.2.0]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.1.1...v0.2.0
|
|
83
89
|
[0.1.1]: https://github.com/kmutahar/bilingual-jekyll-resume-theme/compare/v0.1.0...v0.1.1
|
|
@@ -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.
|
|
203
|
+
<meta itemprop="creator" content="{{ site.name_ar.first }} {{ site.name_ar.middle }} {{ site.name_ar.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>
|
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 %}
|
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
|
|