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