bilingual-jekyll-resume-theme 0.3.1 → 0.5.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 +44 -0
- data/README.md +131 -20
- data/_data/ar/months.yml +12 -0
- data/_includes/ar-date.html +32 -0
- data/_includes/resume-section-ar.html +10 -4
- data/_includes/resume-section-en.html +9 -4
- data/_layouts/default.html +2 -0
- data/_layouts/resume-ar.html +4 -2
- data/_layouts/resume-en.html +3 -1
- data/docs/CONFIG_GUIDE.md +28 -13
- data/docs/DATA_GUIDE.md +106 -27
- data/docs/INCLUDES_GUIDE.md +17 -8
- data/docs/LAYOUTS_GUIDE.md +40 -25
- data/docs/PROJECT_OVERVIEW.md +69 -0
- data/docs/SASS_GUIDE.md +3 -1
- data/docs/{_config.sample.yml → _data/_config.sample.yml} +2 -1
- data/docs/_data/ar/associations.yml +27 -0
- data/docs/_data/ar/certifications.yml +73 -0
- data/docs/_data/ar/courses.yml +39 -0
- data/docs/_data/ar/education.yml +49 -0
- data/docs/_data/ar/experience.yml +50 -0
- data/docs/_data/ar/header.yml +6 -0
- data/docs/_data/ar/interests.yml +13 -0
- data/docs/_data/ar/languages.yml +29 -0
- data/docs/_data/ar/links.yml +17 -0
- data/docs/_data/ar/projects.yml +28 -0
- data/docs/_data/ar/recognitions.yml +23 -0
- data/docs/_data/ar/skills.yml +17 -0
- data/docs/_data/ar/volunteering.yml +39 -0
- data/docs/_data/en/associations.yml +27 -0
- data/docs/_data/en/certifications.yml +73 -0
- data/docs/_data/en/courses.yml +39 -0
- data/docs/_data/en/education.yml +49 -0
- data/docs/_data/en/experience.yml +50 -0
- data/docs/_data/en/header.yml +6 -0
- data/docs/_data/en/interests.yml +13 -0
- data/docs/_data/en/languages.yml +29 -0
- data/docs/_data/en/links.yml +17 -0
- data/docs/_data/en/projects.yml +28 -0
- data/docs/_data/en/recognitions.yml +23 -0
- data/docs/_data/en/skills.yml +17 -0
- data/docs/_data/en/volunteering.yml +39 -0
- metadata +71 -25
- /data/{CODE_OF_CONDUCT.MD → CODE_OF_CONDUCT.md} +0 -0
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# Projects
|
|
2
|
+
# File: _data/projects.yml
|
|
3
|
+
# Personal or professional projects
|
|
4
|
+
|
|
5
|
+
# Each entry represents a project
|
|
6
|
+
- project: "" # Required: Project name
|
|
7
|
+
active: true # Required: Set to false to hide this entry
|
|
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 — Present" or "Jan 2023 — Jun 2024")
|
|
10
|
+
# Use — for em dash (—)
|
|
11
|
+
url: "" # Optional: Project URL (leave empty if no URL, e.g., GitHub repository or project website)
|
|
12
|
+
description: "" # Required: Project description
|
|
13
|
+
|
|
14
|
+
# Example with URL
|
|
15
|
+
- project: ""
|
|
16
|
+
active: true
|
|
17
|
+
role: ""
|
|
18
|
+
duration: ""
|
|
19
|
+
url: "https://github.com/username/project"
|
|
20
|
+
description: ""
|
|
21
|
+
|
|
22
|
+
# Example without URL
|
|
23
|
+
- project: ""
|
|
24
|
+
active: true
|
|
25
|
+
role: ""
|
|
26
|
+
duration: ""
|
|
27
|
+
url: ""
|
|
28
|
+
description: ""
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
# Recognitions
|
|
2
|
+
# File: _data/recognitions.yml
|
|
3
|
+
# Awards, honors, and recognition
|
|
4
|
+
|
|
5
|
+
# Each entry represents an award or recognition
|
|
6
|
+
- award: "" # Required: Award name (e.g., "Outstanding Achievement", "Employee of the Quarter")
|
|
7
|
+
active: true # Required: Set to false to hide this entry
|
|
8
|
+
organization: "" # Required: Awarding organization (e.g., "Company Name" or "University Name")
|
|
9
|
+
year: "" # Required: Year(s) received (can be multiple, e.g., "2010, 2014" or "Q2 2023, Q4 2023" or "2019, 2020, 2021, 2022")
|
|
10
|
+
summary: "" # Required: Award description
|
|
11
|
+
|
|
12
|
+
# Example entries
|
|
13
|
+
- award: ""
|
|
14
|
+
active: true
|
|
15
|
+
organization: ""
|
|
16
|
+
year: ""
|
|
17
|
+
summary: ""
|
|
18
|
+
|
|
19
|
+
- award: ""
|
|
20
|
+
active: true
|
|
21
|
+
organization: ""
|
|
22
|
+
year: ""
|
|
23
|
+
summary: ""
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
# Skills
|
|
2
|
+
# File: _data/skills.yml
|
|
3
|
+
# Professional skills and competencies
|
|
4
|
+
|
|
5
|
+
# Each entry represents a skill
|
|
6
|
+
- skill: "" # Required: Skill name/title (e.g., "Full-Stack Web Development", "Machine Learning")
|
|
7
|
+
active: true # Required: Set to false to hide this entry
|
|
8
|
+
description: "" # Required: Detailed description of the skill
|
|
9
|
+
|
|
10
|
+
# Example entries
|
|
11
|
+
- skill: ""
|
|
12
|
+
active: true
|
|
13
|
+
description: ""
|
|
14
|
+
|
|
15
|
+
- skill: ""
|
|
16
|
+
active: true
|
|
17
|
+
description: ""
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
# Volunteering
|
|
2
|
+
# File: _data/volunteering.yml
|
|
3
|
+
# Volunteer work and community service
|
|
4
|
+
|
|
5
|
+
# Structure is identical to Experience section. Volunteer positions are grouped by organization.
|
|
6
|
+
# Roles are sorted by startdate (most recent first).
|
|
7
|
+
|
|
8
|
+
# OPTION 1: Using startdate and enddate (recommended for continuous volunteer work)
|
|
9
|
+
- company: "" # Required: Organization name
|
|
10
|
+
position: "" # Required: Role/position title
|
|
11
|
+
startdate: # Required: Start date (YYYY-MM-DD format, e.g., 2011-11-01)
|
|
12
|
+
enddate: # Optional: End date (YYYY-MM-DD format) or "Present" for current roles
|
|
13
|
+
location: "" # Optional: Location (e.g., "Springfield, IL" or "Remote")
|
|
14
|
+
active: true # Required: Set to true to display, false to hide
|
|
15
|
+
notes: "" # Optional: Personal notes (not displayed on resume)
|
|
16
|
+
summary: "" # Optional: Description of volunteer work (only shown if enable_summary is true in _config.yml)
|
|
17
|
+
|
|
18
|
+
# Example of current volunteer position
|
|
19
|
+
- company: ""
|
|
20
|
+
position: ""
|
|
21
|
+
startdate:
|
|
22
|
+
enddate: Present # Use "Present" for ongoing volunteer work
|
|
23
|
+
location: ""
|
|
24
|
+
active: true
|
|
25
|
+
notes: ""
|
|
26
|
+
summary: ""
|
|
27
|
+
|
|
28
|
+
# OPTION 2: Using durations (alternative for non-continuous periods at same organization)
|
|
29
|
+
# Use this instead of startdate/enddate when you have multiple separate time periods
|
|
30
|
+
- company: ""
|
|
31
|
+
position: ""
|
|
32
|
+
durations: # Alternative: Use this instead of startdate/enddate for non-continuous periods
|
|
33
|
+
- duration: "" # Display text for first period (e.g., "Summer 2022")
|
|
34
|
+
- duration: "" # Display text for second period (e.g., "& Winter 2021")
|
|
35
|
+
# Use & for ampersand (&) and — for em dash (—)
|
|
36
|
+
location: ""
|
|
37
|
+
active: true
|
|
38
|
+
notes: ""
|
|
39
|
+
summary: ""
|
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.5.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
|
|
@@ -28,59 +27,72 @@ dependencies:
|
|
|
28
27
|
name: jekyll-feed
|
|
29
28
|
requirement: !ruby/object:Gem::Requirement
|
|
30
29
|
requirements:
|
|
31
|
-
- - "
|
|
30
|
+
- - "~>"
|
|
32
31
|
- !ruby/object:Gem::Version
|
|
33
|
-
version: '0'
|
|
32
|
+
version: '0.17'
|
|
34
33
|
type: :runtime
|
|
35
34
|
prerelease: false
|
|
36
35
|
version_requirements: !ruby/object:Gem::Requirement
|
|
37
36
|
requirements:
|
|
38
|
-
- - "
|
|
37
|
+
- - "~>"
|
|
39
38
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: '0'
|
|
39
|
+
version: '0.17'
|
|
41
40
|
- !ruby/object:Gem::Dependency
|
|
42
41
|
name: jekyll-seo-tag
|
|
43
42
|
requirement: !ruby/object:Gem::Requirement
|
|
44
43
|
requirements:
|
|
45
|
-
- - "
|
|
44
|
+
- - "~>"
|
|
46
45
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: '
|
|
46
|
+
version: '2.8'
|
|
48
47
|
type: :runtime
|
|
49
48
|
prerelease: false
|
|
50
49
|
version_requirements: !ruby/object:Gem::Requirement
|
|
51
50
|
requirements:
|
|
52
|
-
- - "
|
|
51
|
+
- - "~>"
|
|
53
52
|
- !ruby/object:Gem::Version
|
|
54
|
-
version: '
|
|
53
|
+
version: '2.8'
|
|
55
54
|
- !ruby/object:Gem::Dependency
|
|
56
55
|
name: jekyll-sitemap
|
|
57
56
|
requirement: !ruby/object:Gem::Requirement
|
|
58
57
|
requirements:
|
|
59
|
-
- - "
|
|
58
|
+
- - "~>"
|
|
60
59
|
- !ruby/object:Gem::Version
|
|
61
|
-
version: '
|
|
60
|
+
version: '1.4'
|
|
62
61
|
type: :runtime
|
|
63
62
|
prerelease: false
|
|
64
63
|
version_requirements: !ruby/object:Gem::Requirement
|
|
65
64
|
requirements:
|
|
66
|
-
- - "
|
|
65
|
+
- - "~>"
|
|
67
66
|
- !ruby/object:Gem::Version
|
|
68
|
-
version: '
|
|
67
|
+
version: '1.4'
|
|
69
68
|
- !ruby/object:Gem::Dependency
|
|
70
69
|
name: jekyll-redirect-from
|
|
71
70
|
requirement: !ruby/object:Gem::Requirement
|
|
72
71
|
requirements:
|
|
73
|
-
- - "
|
|
72
|
+
- - "~>"
|
|
74
73
|
- !ruby/object:Gem::Version
|
|
75
|
-
version: '0'
|
|
74
|
+
version: '0.16'
|
|
76
75
|
type: :runtime
|
|
77
76
|
prerelease: false
|
|
78
77
|
version_requirements: !ruby/object:Gem::Requirement
|
|
79
78
|
requirements:
|
|
80
|
-
- - "
|
|
79
|
+
- - "~>"
|
|
80
|
+
- !ruby/object:Gem::Version
|
|
81
|
+
version: '0.16'
|
|
82
|
+
- !ruby/object:Gem::Dependency
|
|
83
|
+
name: logger
|
|
84
|
+
requirement: !ruby/object:Gem::Requirement
|
|
85
|
+
requirements:
|
|
86
|
+
- - "~>"
|
|
87
|
+
- !ruby/object:Gem::Version
|
|
88
|
+
version: '1.7'
|
|
89
|
+
type: :runtime
|
|
90
|
+
prerelease: false
|
|
91
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
92
|
+
requirements:
|
|
93
|
+
- - "~>"
|
|
81
94
|
- !ruby/object:Gem::Version
|
|
82
|
-
version: '
|
|
83
|
-
description:
|
|
95
|
+
version: '1.7'
|
|
84
96
|
email:
|
|
85
97
|
- contact@mutahar.me
|
|
86
98
|
executables: []
|
|
@@ -88,9 +100,10 @@ extensions: []
|
|
|
88
100
|
extra_rdoc_files: []
|
|
89
101
|
files:
|
|
90
102
|
- CHANGELOG.md
|
|
91
|
-
- CODE_OF_CONDUCT.
|
|
103
|
+
- CODE_OF_CONDUCT.md
|
|
92
104
|
- LICENSE.txt
|
|
93
105
|
- README.md
|
|
106
|
+
- _data/ar/months.yml
|
|
94
107
|
- _includes/analytics-body.html
|
|
95
108
|
- _includes/analytics-head.html
|
|
96
109
|
- _includes/ar-date.html
|
|
@@ -148,8 +161,35 @@ files:
|
|
|
148
161
|
- docs/DATA_GUIDE.md
|
|
149
162
|
- docs/INCLUDES_GUIDE.md
|
|
150
163
|
- docs/LAYOUTS_GUIDE.md
|
|
164
|
+
- docs/PROJECT_OVERVIEW.md
|
|
151
165
|
- docs/SASS_GUIDE.md
|
|
152
|
-
- docs/_config.sample.yml
|
|
166
|
+
- docs/_data/_config.sample.yml
|
|
167
|
+
- docs/_data/ar/associations.yml
|
|
168
|
+
- docs/_data/ar/certifications.yml
|
|
169
|
+
- docs/_data/ar/courses.yml
|
|
170
|
+
- docs/_data/ar/education.yml
|
|
171
|
+
- docs/_data/ar/experience.yml
|
|
172
|
+
- docs/_data/ar/header.yml
|
|
173
|
+
- docs/_data/ar/interests.yml
|
|
174
|
+
- docs/_data/ar/languages.yml
|
|
175
|
+
- docs/_data/ar/links.yml
|
|
176
|
+
- docs/_data/ar/projects.yml
|
|
177
|
+
- docs/_data/ar/recognitions.yml
|
|
178
|
+
- docs/_data/ar/skills.yml
|
|
179
|
+
- docs/_data/ar/volunteering.yml
|
|
180
|
+
- docs/_data/en/associations.yml
|
|
181
|
+
- docs/_data/en/certifications.yml
|
|
182
|
+
- docs/_data/en/courses.yml
|
|
183
|
+
- docs/_data/en/education.yml
|
|
184
|
+
- docs/_data/en/experience.yml
|
|
185
|
+
- docs/_data/en/header.yml
|
|
186
|
+
- docs/_data/en/interests.yml
|
|
187
|
+
- docs/_data/en/languages.yml
|
|
188
|
+
- docs/_data/en/links.yml
|
|
189
|
+
- docs/_data/en/projects.yml
|
|
190
|
+
- docs/_data/en/recognitions.yml
|
|
191
|
+
- docs/_data/en/skills.yml
|
|
192
|
+
- docs/_data/en/volunteering.yml
|
|
153
193
|
homepage: https://www.mutahr.me/bilingual-jekyll-resume-theme
|
|
154
194
|
licenses:
|
|
155
195
|
- MIT
|
|
@@ -159,7 +199,14 @@ metadata:
|
|
|
159
199
|
documentation_uri: https://github.com/kmutahar/bilingual-jekyll-resume-theme#readme
|
|
160
200
|
homepage_uri: https://www.mutahr.me/bilingual-jekyll-resume-theme
|
|
161
201
|
source_code_uri: https://github.com/kmutahar/bilingual-jekyll-resume-theme/
|
|
162
|
-
|
|
202
|
+
allowed_push_host: https://rubygems.org
|
|
203
|
+
post_install_message: |
|
|
204
|
+
--------------------------------------------------
|
|
205
|
+
Thank you for installing bilingual-jekyll-resume-theme!
|
|
206
|
+
|
|
207
|
+
To get started, check the setup instructions:
|
|
208
|
+
https://github.com/kmutahar/bilingual-jekyll-resume-theme#readme
|
|
209
|
+
--------------------------------------------------
|
|
163
210
|
rdoc_options: []
|
|
164
211
|
require_paths:
|
|
165
212
|
- lib
|
|
@@ -174,8 +221,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
174
221
|
- !ruby/object:Gem::Version
|
|
175
222
|
version: '0'
|
|
176
223
|
requirements: []
|
|
177
|
-
rubygems_version: 3.
|
|
178
|
-
signing_key:
|
|
224
|
+
rubygems_version: 3.7.2
|
|
179
225
|
specification_version: 4
|
|
180
226
|
summary: A flexible Jekyll theme for creating a clean, data-driven, bilingual (English
|
|
181
227
|
& Arabic) resume.
|
|
File without changes
|