bilingual-jekyll-resume-theme 0.1.1 → 0.3.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 +85 -0
- data/CODE_OF_CONDUCT.MD +92 -0
- data/_layouts/resume-ar.html +132 -1
- data/_layouts/resume-en.html +132 -1
- data/assets/css/cv-ar.scss +8 -8
- data/assets/css/cv.scss +7 -7
- data/assets/css/main.scss +3 -3
- data/docs/CONFIG_GUIDE.md +316 -0
- data/docs/DATA_GUIDE.md +559 -0
- data/docs/INCLUDES_GUIDE.md +482 -0
- data/docs/LAYOUTS_GUIDE.md +312 -0
- data/docs/SASS_GUIDE.md +290 -0
- data/docs/_config.sample.yml +167 -0
- metadata +66 -2
|
@@ -0,0 +1,167 @@
|
|
|
1
|
+
# ==============================================================================
|
|
2
|
+
# SITE IDENTITY & BASIC INFO (Required - customize these first)
|
|
3
|
+
# ==============================================================================
|
|
4
|
+
theme: bilingual-jekyll-resume-theme
|
|
5
|
+
title: "Your Full Name"
|
|
6
|
+
description: >- # this means to ignore newlines until "next key"
|
|
7
|
+
A brief description of your site or professional tagline
|
|
8
|
+
url: "https://your-domain.com" # Your site's URL the base hostname & protocol for your site, e.g. http://example.com
|
|
9
|
+
baseurl: "" # Leave empty unless using a subdirectory
|
|
10
|
+
timezone: UTC # Your timezone
|
|
11
|
+
|
|
12
|
+
# ==============================================================================
|
|
13
|
+
# PERSONAL INFORMATION (Required - your name and titles)
|
|
14
|
+
# ==============================================================================
|
|
15
|
+
name:
|
|
16
|
+
first: "Your"
|
|
17
|
+
middle: "Middle"
|
|
18
|
+
last: "Lastname"
|
|
19
|
+
|
|
20
|
+
resume_title: "Your Job Title" # English job title
|
|
21
|
+
resume_title_ar: "مسماك الوظيفي" # Arabic job title (optional if not using Arabic)
|
|
22
|
+
|
|
23
|
+
# ==============================================================================
|
|
24
|
+
# CONTACT INFORMATION (Required - at least email)
|
|
25
|
+
# ==============================================================================
|
|
26
|
+
contact_info:
|
|
27
|
+
email: "your.email@example.com"
|
|
28
|
+
phone: "+1 555 555 5555" # Optional
|
|
29
|
+
address: "Your City, Country" # Optional
|
|
30
|
+
address_ar: "مدينتك، دولتك" # Optional Arabic address
|
|
31
|
+
# Advanced: separate live contact info (shown when enable_live: true)
|
|
32
|
+
email_live: "live@example.com" # Optional
|
|
33
|
+
phone_live: "+1 555 000 0000" # Optional
|
|
34
|
+
# dob: 1990-01-01 # Optional date of birth
|
|
35
|
+
|
|
36
|
+
# ==============================================================================
|
|
37
|
+
# SOCIAL LINKS (Optional - only add the ones you use using full URLs)
|
|
38
|
+
# ==============================================================================
|
|
39
|
+
social_links:
|
|
40
|
+
github: https://github.com/yourusername
|
|
41
|
+
linkedin: https://www.linkedin.com/in/yourhandle/
|
|
42
|
+
# Add any of these you use (leave others commented or remove):
|
|
43
|
+
# twitter: https://twitter.com/yourhandle
|
|
44
|
+
# telegram: https://t.me/yourhandle
|
|
45
|
+
# medium: https://medium.com/@yourhandle
|
|
46
|
+
# website: https://yourwebsite.com
|
|
47
|
+
# whatsapp: https://wa.me/1234567890
|
|
48
|
+
# instagram: https://instagram.com/yourhandle
|
|
49
|
+
# facebook: https://facebook.com/yourhandle
|
|
50
|
+
# youtube: https://youtube.com/@yourhandle
|
|
51
|
+
# devto: https://dev.to/yourhandle
|
|
52
|
+
# dribbble: https://dribbble.com/yourhandle
|
|
53
|
+
# flickr: https://flickr.com/people/yourhandle
|
|
54
|
+
# pinterest: https://pinterest.com/yourhandle
|
|
55
|
+
# mastodon: https://mastodon.social/@yourhandle
|
|
56
|
+
|
|
57
|
+
# ==============================================================================
|
|
58
|
+
# RESUME CONTENT SETTINGS (Configure what shows on your resume)
|
|
59
|
+
# ==============================================================================
|
|
60
|
+
|
|
61
|
+
# Data source configuration (set to your _data path without prefix using dots as separators)
|
|
62
|
+
# The active resume data path to use.
|
|
63
|
+
# Enter the full path using dots as separators, without the _data/ prefix and without the .yml file names at the end.
|
|
64
|
+
active_resume_path_en: "en" # Path to English data (empty = root _data/)
|
|
65
|
+
active_resume_path_ar: "ar" # ath to Arabic data (empty = root _data/)
|
|
66
|
+
|
|
67
|
+
# Header and intro
|
|
68
|
+
resume_avatar: true # Show profile picture
|
|
69
|
+
display_header_contact_info: true # Show contact info in header
|
|
70
|
+
resume_header_intro: "<p>Your professional summary or elevator pitch goes here.</p>"
|
|
71
|
+
|
|
72
|
+
# Job search status
|
|
73
|
+
# use "true" to display the email contact button,
|
|
74
|
+
# "false" to display an "I'm not looking for work" message,
|
|
75
|
+
# or remove the resume_looking_for_work option entirely
|
|
76
|
+
# to leave blank
|
|
77
|
+
resume_looking_for_work: true # true = show contact button, false = "not looking", remove = blank
|
|
78
|
+
|
|
79
|
+
# Section toggles
|
|
80
|
+
resume_section: # Optional sections (set to true to include):
|
|
81
|
+
associations: true
|
|
82
|
+
certifications: true
|
|
83
|
+
courses: true
|
|
84
|
+
education: true
|
|
85
|
+
experience: true
|
|
86
|
+
interests: false
|
|
87
|
+
lang_header: true # Show languages in header instead of separate section
|
|
88
|
+
languages: false
|
|
89
|
+
links: false
|
|
90
|
+
projects: true
|
|
91
|
+
recognition: false
|
|
92
|
+
skills: false
|
|
93
|
+
volunteering: true
|
|
94
|
+
|
|
95
|
+
# Section display order
|
|
96
|
+
# Order in which resume sections appear
|
|
97
|
+
# List the section names in the order you want them to render.
|
|
98
|
+
# Only sections with resume_section.<name>: true will actually display.
|
|
99
|
+
# Available sections: experience, education, certifications, courses, volunteering,
|
|
100
|
+
# projects, skills, recognition, associations, interests, languages, links
|
|
101
|
+
resume_section_order:
|
|
102
|
+
- experience
|
|
103
|
+
- education
|
|
104
|
+
- certifications
|
|
105
|
+
- courses
|
|
106
|
+
- volunteering
|
|
107
|
+
- projects
|
|
108
|
+
- associations
|
|
109
|
+
- skills
|
|
110
|
+
- recognition
|
|
111
|
+
- languages
|
|
112
|
+
- interests
|
|
113
|
+
- links
|
|
114
|
+
|
|
115
|
+
# ==============================================================================
|
|
116
|
+
# ADVANCED SETTINGS (Usually don't need to change these)
|
|
117
|
+
# ==============================================================================
|
|
118
|
+
|
|
119
|
+
# Resume behavior
|
|
120
|
+
enable_summary: false # Show role/course summaries when available
|
|
121
|
+
enable_live: false # Use "live" contact info vs regular contact info
|
|
122
|
+
resume_print_social_links: true # Include social links on printed version
|
|
123
|
+
|
|
124
|
+
# Design
|
|
125
|
+
authors: [] # optional
|
|
126
|
+
resume_theme: default # Theme variant (currently only "default")
|
|
127
|
+
|
|
128
|
+
# Analytics (optional - choose one)
|
|
129
|
+
analytics:
|
|
130
|
+
# Google Tag Manager (recommended):
|
|
131
|
+
# gtm: GTM-XXXXXXX
|
|
132
|
+
# OR Google Analytics 4:
|
|
133
|
+
# ga: true
|
|
134
|
+
# gtag: G-XXXXXXXXXX
|
|
135
|
+
|
|
136
|
+
# ==============================================================================
|
|
137
|
+
# JEKYLL BUILD SETTINGS (Advanced users only)
|
|
138
|
+
# ==============================================================================
|
|
139
|
+
|
|
140
|
+
# Required plugins
|
|
141
|
+
plugins:
|
|
142
|
+
- jekyll-feed
|
|
143
|
+
- jekyll-seo-tag
|
|
144
|
+
- jekyll-sitemap
|
|
145
|
+
- jekyll-redirect-from
|
|
146
|
+
|
|
147
|
+
# File processing
|
|
148
|
+
include:
|
|
149
|
+
- _redirects
|
|
150
|
+
- .well-known/
|
|
151
|
+
- _pages/
|
|
152
|
+
- _posts/
|
|
153
|
+
|
|
154
|
+
exclude:
|
|
155
|
+
- scratch.md
|
|
156
|
+
- README.md
|
|
157
|
+
- Gemfile*
|
|
158
|
+
- vendor/
|
|
159
|
+
- node_modules/
|
|
160
|
+
- "*.gemspec"
|
|
161
|
+
- netlify.toml
|
|
162
|
+
- vercel.json
|
|
163
|
+
- WARP.md
|
|
164
|
+
- scripts/
|
|
165
|
+
|
|
166
|
+
# Page defaults
|
|
167
|
+
defaults: []
|
metadata
CHANGED
|
@@ -1,14 +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.
|
|
4
|
+
version: 0.3.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Khaldoon Mutahar
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-11-
|
|
11
|
+
date: 2025-11-03 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: jekyll
|
|
@@ -24,6 +24,62 @@ dependencies:
|
|
|
24
24
|
- - "~>"
|
|
25
25
|
- !ruby/object:Gem::Version
|
|
26
26
|
version: '4.4'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: jekyll-feed
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - ">="
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :runtime
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - ">="
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
- !ruby/object:Gem::Dependency
|
|
42
|
+
name: jekyll-seo-tag
|
|
43
|
+
requirement: !ruby/object:Gem::Requirement
|
|
44
|
+
requirements:
|
|
45
|
+
- - ">="
|
|
46
|
+
- !ruby/object:Gem::Version
|
|
47
|
+
version: '0'
|
|
48
|
+
type: :runtime
|
|
49
|
+
prerelease: false
|
|
50
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
51
|
+
requirements:
|
|
52
|
+
- - ">="
|
|
53
|
+
- !ruby/object:Gem::Version
|
|
54
|
+
version: '0'
|
|
55
|
+
- !ruby/object:Gem::Dependency
|
|
56
|
+
name: jekyll-sitemap
|
|
57
|
+
requirement: !ruby/object:Gem::Requirement
|
|
58
|
+
requirements:
|
|
59
|
+
- - ">="
|
|
60
|
+
- !ruby/object:Gem::Version
|
|
61
|
+
version: '0'
|
|
62
|
+
type: :runtime
|
|
63
|
+
prerelease: false
|
|
64
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
65
|
+
requirements:
|
|
66
|
+
- - ">="
|
|
67
|
+
- !ruby/object:Gem::Version
|
|
68
|
+
version: '0'
|
|
69
|
+
- !ruby/object:Gem::Dependency
|
|
70
|
+
name: jekyll-redirect-from
|
|
71
|
+
requirement: !ruby/object:Gem::Requirement
|
|
72
|
+
requirements:
|
|
73
|
+
- - ">="
|
|
74
|
+
- !ruby/object:Gem::Version
|
|
75
|
+
version: '0'
|
|
76
|
+
type: :runtime
|
|
77
|
+
prerelease: false
|
|
78
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
79
|
+
requirements:
|
|
80
|
+
- - ">="
|
|
81
|
+
- !ruby/object:Gem::Version
|
|
82
|
+
version: '0'
|
|
27
83
|
description:
|
|
28
84
|
email:
|
|
29
85
|
- contact@mutahar.me
|
|
@@ -31,6 +87,8 @@ executables: []
|
|
|
31
87
|
extensions: []
|
|
32
88
|
extra_rdoc_files: []
|
|
33
89
|
files:
|
|
90
|
+
- CHANGELOG.md
|
|
91
|
+
- CODE_OF_CONDUCT.MD
|
|
34
92
|
- LICENSE.txt
|
|
35
93
|
- README.md
|
|
36
94
|
- _includes/analytics-body.html
|
|
@@ -86,6 +144,12 @@ files:
|
|
|
86
144
|
- assets/favicon/resume/favicon-32x32.png
|
|
87
145
|
- assets/favicon/resume/favicon.ico
|
|
88
146
|
- assets/favicon/resume/site.webmanifest
|
|
147
|
+
- docs/CONFIG_GUIDE.md
|
|
148
|
+
- docs/DATA_GUIDE.md
|
|
149
|
+
- docs/INCLUDES_GUIDE.md
|
|
150
|
+
- docs/LAYOUTS_GUIDE.md
|
|
151
|
+
- docs/SASS_GUIDE.md
|
|
152
|
+
- docs/_config.sample.yml
|
|
89
153
|
homepage: https://www.mutahr.me/bilingual-jekyll-resume-theme
|
|
90
154
|
licenses:
|
|
91
155
|
- MIT
|