Skip to content

Commit c98fd1e

Browse files
authored
Enhancements: Theme Skin, Timezone Display, Social Profiles, and Library Updates (#473)
* Remove the 'version' atribute of docker-compose The attribute `version` is obsolete * Add 'tealblue' theme skin * Check the timezone using World Time API (worldtimeapi.org). This update modifies the timezone display in the sidebar. When a user provides their timezone, it now includes a link to World Time API, where they can view detailed information about the timezone. The displayed link text is in the format: "[Timezone] Timezone." * Update FontAwesome to version 6.6.0 * Update URLs and add new social profiles (Mastodon, HackerRank, LeetCode) - Updated website links to use full URLs with HTTPS. - Added Mastodon, HackerRank, and LeetCode profiles to the sidebar. - Adjusted HTML to correctly handle new and existing social links. * Changes to the Google Analytics script - Change to support Google Analytics 4 * Fix missing pdf field on data * Add missing CSS for OSS section: Adjust spacing between contributions
1 parent 7953f37 commit c98fd1e

File tree

2,539 files changed

+343815
-62374
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

2,539 files changed

+343815
-62374
lines changed

_config.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ url: 'http://webjeda.com'
1010

1111
description: A beautiful Jekyll theme for creating resume
1212
# Style will be applied only after restarting the build or serve. Just choose one of the options.
13-
theme_skin: blue # blue turquoise green berry orange ceramic
13+
theme_skin: blue # blue turquoise green berry orange ceramic tealblue
1414
chrome_mobile_color: #use hex colors (ex:#1976d2) or leave empty if you don't want a color for chrome mobile searchbar
1515

1616
# Tracker

_data/data.yml

+5-2
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ sidebar:
1515
# Sidebar links
1616
1717
phone: 012 345 6789
18-
timezone: America/Cancun Timezone
18+
timezone: America/Cancun # Enter your timezone, e.g., America/Havana, Africa/Casablanca, America/North_Dakota/Center
1919
citizenship:
20-
website: blog.webjeda.com #do not add http://
20+
website: https://blog.webjeda.com/ # Include the full website URL, including "http://" or "https://".
2121
linkedin: alandoe
2222
xing: alandoe
2323
github: sharu725
@@ -28,6 +28,9 @@ sidebar:
2828
stack-overflow: # Number/Username, e.g. 123456/alandoe
2929
codewars:
3030
goodreads: # Number-Username, e.g. 123456-alandoe
31+
mastodon: https://fosstodon.org/@plinkr # Please include your full Mastodon link here.
32+
hackerrank: plinkr # Please provide your HackerRank username.
33+
leetcode: plinkr # Please provide your LeetCode username.
3134
pdf: http://www.africau.edu/images/default/sample.pdf
3235

3336
languages:

_includes/analytics.html

+6-13
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,9 @@
11
<!-- Analytics -->
2+
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics }}"></script>
23
<script>
3-
(function (i, s, o, g, r, a, m) {
4-
i['GoogleAnalyticsObject'] = r;
5-
i[r] = i[r] || function () {
6-
(i[r].q = i[r].q || []).push(arguments)
7-
}, i[r].l = 1 * new Date();
8-
a = s.createElement(o),
9-
m = s.getElementsByTagName(o)[0];
10-
a.async = 1;
11-
a.src = g;
12-
m.parentNode.insertBefore(a, m)
13-
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
14-
ga('create', '{{site.analytics}}', 'auto');
15-
ga('send', 'pageview');
4+
window.dataLayer = window.dataLayer || [];
5+
function gtag(){dataLayer.push(arguments);}
6+
gtag('js', new Date());
7+
8+
gtag('config', '{{ site.analytics }}');
169
</script>

_includes/contact.html

+24-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
{% if sidebar.timezone %}
2323
<li class="timezone"><i class="fas fa-clock"></i>
24-
<a href="">{{ sidebar.timezone }}</a>
24+
<a href="https://worldtimeapi.org/timezone/{{ sidebar.timezone }}" target="_blank">{{ sidebar.timezone }} Timezone</a>
2525
</li>
2626
{% endif %}
2727

@@ -33,7 +33,7 @@
3333

3434
{% if sidebar.website %}
3535
<li class="website"><i class="fas fa-globe-americas"></i>
36-
<a href="http://{{ sidebar.website }}" target="_blank">{{ sidebar.website }}</a>
36+
<a href="{{ sidebar.website }}" target="_blank">{{ sidebar.website }}</a>
3737
</li>
3838
{% endif %}
3939

@@ -51,19 +51,19 @@
5151

5252
{% if sidebar.github %}
5353
<li class="github"><i class="fab fa-github"></i>
54-
<a href="http://github.com/{{ sidebar.github }}" target="_blank">{{ sidebar.github }}</a>
54+
<a href="https://github.com/{{ sidebar.github }}" target="_blank">{{ sidebar.github }}</a>
5555
</li>
5656
{% endif %}
5757

5858
{% if sidebar.gitlab %}
5959
<li class="gitlab"><i class="fab fa-gitlab"></i>
60-
<a href="http://gitlab.com/{{ sidebar.gitlab }}" target="_blank">{{ sidebar.gitlab }}</a>
60+
<a href="https://gitlab.com/{{ sidebar.gitlab }}" target="_blank">{{ sidebar.gitlab }}</a>
6161
</li>
6262
{% endif %}
6363

6464
{% if sidebar.bitbucket %}
6565
<li class="bitbucket"><i class="fab fa-bitbucket"></i>
66-
<a href="http://bitbucket.com/{{ sidebar.bitbucket }}" target="_blank">{{ sidebar.bitbucket }}</a>
66+
<a href="https://bitbucket.com/{{ sidebar.bitbucket }}" target="_blank">{{ sidebar.bitbucket }}</a>
6767
</li>
6868
{% endif %}
6969

@@ -73,6 +73,13 @@
7373
</li>
7474
{% endif %}
7575

76+
{% if sidebar.mastodon %}
77+
{% assign mastodon_handle = sidebar.mastodon | split: '/' %}
78+
<li class="mastodon"><i class="fab fa-mastodon"></i>
79+
<a href="{{ sidebar.mastodon }}" target="_blank">{{ mastodon_handle[3] }}@{{ mastodon_handle[2] }}</a>
80+
</li>
81+
{% endif %}
82+
7683
{% if sidebar.stack-overflow %}
7784
<li class="stack-overflow"><i class="fab fa-stack-overflow"></i>
7885
<a href="https://stackoverflow.com/users/{{ sidebar.stack-overflow }}" target="_blank">{{ sidebar.stack-overflow }}</a>
@@ -85,6 +92,18 @@
8592
</li>
8693
{% endif %}
8794

95+
{% if sidebar.hackerrank %}
96+
<li class="hackerrank"><i class="fab fa-hackerrank"></i>
97+
<a href="https://www.hackerrank.com/profile/{{ sidebar.hackerrank }}" target="_blank">{{ sidebar.hackerrank }}</a>
98+
</li>
99+
{% endif %}
100+
101+
{% if sidebar.leetcode %}
102+
<li class="leetcode"><i class="fas fa-code"></i>
103+
<a href="https://leetcode.com/u/{{ sidebar.leetcode }}" target="_blank">{{ sidebar.leetcode }}</a>
104+
</li>
105+
{% endif %}
106+
88107
{% if sidebar.goodreads %}
89108
<li class="goodreads-g"><i class="fab fa-goodreads-g"></i>
90109
<a href="https://www.goodreads.com/user/show/{{ sidebar.goodreads }}" target="_blank">{{ sidebar.goodreads }}</a>

_sass/_base.scss

+8
Original file line numberDiff line numberDiff line change
@@ -230,6 +230,14 @@ p {
230230
margin-bottom: 15px;
231231
}
232232
}
233+
.oss-section {
234+
.intro {
235+
margin-bottom: 30px;
236+
}
237+
.item {
238+
margin-bottom: 15px;
239+
}
240+
}
233241

234242
.publication-title {
235243
font-size: 16px;

_sass/skins/_tealblue.scss

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
/* styles-6 variables */
2+
$theme-color: #2B6781;
3+
$text-color: #3F4650;
4+
$text-color-secondary: #545E6C;
5+
$text-grey: #97AAC3;
6+
$divider: #e8e8e8;
7+
$lighter-grey: #ccc;
8+
$darker-grey: #666;
9+
$smoky-white: #f5f5f5;
10+
$heart: #fb866a;

assets/plugins/font-awesome/LICENSE.txt

+139-8
Original file line numberDiff line numberDiff line change
@@ -1,33 +1,164 @@
1+
Fonticons, Inc. (https://fontawesome.com)
2+
3+
--------------------------------------------------------------------------------
4+
15
Font Awesome Free License
2-
-------------------------
36

47
Font Awesome Free is free, open source, and GPL friendly. You can use it for
58
commercial projects, open source projects, or really almost whatever you want.
6-
Full Font Awesome Free license: https://fontawesome.com/license.
9+
Full Font Awesome Free license: https://fontawesome.com/license/free.
10+
11+
--------------------------------------------------------------------------------
712

813
# Icons: CC BY 4.0 License (https://creativecommons.org/licenses/by/4.0/)
9-
In the Font Awesome Free download, the CC BY 4.0 license applies to all icons
10-
packaged as SVG and JS file types.
1114

12-
# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
13-
In the Font Awesome Free download, the SIL OLF license applies to all icons
15+
The Font Awesome Free download is licensed under a Creative Commons
16+
Attribution 4.0 International License and applies to all icons packaged
17+
as SVG and JS file types.
18+
19+
--------------------------------------------------------------------------------
20+
21+
# Fonts: SIL OFL 1.1 License
22+
23+
In the Font Awesome Free download, the SIL OFL license applies to all icons
1424
packaged as web and desktop font files.
1525

26+
Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com)
27+
with Reserved Font Name: "Font Awesome".
28+
29+
This Font Software is licensed under the SIL Open Font License, Version 1.1.
30+
This license is copied below, and is also available with a FAQ at:
31+
http://scripts.sil.org/OFL
32+
33+
SIL OPEN FONT LICENSE
34+
Version 1.1 - 26 February 2007
35+
36+
PREAMBLE
37+
The goals of the Open Font License (OFL) are to stimulate worldwide
38+
development of collaborative font projects, to support the font creation
39+
efforts of academic and linguistic communities, and to provide a free and
40+
open framework in which fonts may be shared and improved in partnership
41+
with others.
42+
43+
The OFL allows the licensed fonts to be used, studied, modified and
44+
redistributed freely as long as they are not sold by themselves. The
45+
fonts, including any derivative works, can be bundled, embedded,
46+
redistributed and/or sold with any software provided that any reserved
47+
names are not used by derivative works. The fonts and derivatives,
48+
however, cannot be released under any other type of license. The
49+
requirement for fonts to remain under this license does not apply
50+
to any document created using the fonts or their derivatives.
51+
52+
DEFINITIONS
53+
"Font Software" refers to the set of files released by the Copyright
54+
Holder(s) under this license and clearly marked as such. This may
55+
include source files, build scripts and documentation.
56+
57+
"Reserved Font Name" refers to any names specified as such after the
58+
copyright statement(s).
59+
60+
"Original Version" refers to the collection of Font Software components as
61+
distributed by the Copyright Holder(s).
62+
63+
"Modified Version" refers to any derivative made by adding to, deleting,
64+
or substituting — in part or in whole — any of the components of the
65+
Original Version, by changing formats or by porting the Font Software to a
66+
new environment.
67+
68+
"Author" refers to any designer, engineer, programmer, technical
69+
writer or other person who contributed to the Font Software.
70+
71+
PERMISSION & CONDITIONS
72+
Permission is hereby granted, free of charge, to any person obtaining
73+
a copy of the Font Software, to use, study, copy, merge, embed, modify,
74+
redistribute, and sell modified and unmodified copies of the Font
75+
Software, subject to the following conditions:
76+
77+
1) Neither the Font Software nor any of its individual components,
78+
in Original or Modified Versions, may be sold by itself.
79+
80+
2) Original or Modified Versions of the Font Software may be bundled,
81+
redistributed and/or sold with any software, provided that each copy
82+
contains the above copyright notice and this license. These can be
83+
included either as stand-alone text files, human-readable headers or
84+
in the appropriate machine-readable metadata fields within text or
85+
binary files as long as those fields can be easily viewed by the user.
86+
87+
3) No Modified Version of the Font Software may use the Reserved Font
88+
Name(s) unless explicit written permission is granted by the corresponding
89+
Copyright Holder. This restriction only applies to the primary font name as
90+
presented to the users.
91+
92+
4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
93+
Software shall not be used to promote, endorse or advertise any
94+
Modified Version, except to acknowledge the contribution(s) of the
95+
Copyright Holder(s) and the Author(s) or with their explicit written
96+
permission.
97+
98+
5) The Font Software, modified or unmodified, in part or in whole,
99+
must be distributed entirely under this license, and must not be
100+
distributed under any other license. The requirement for fonts to
101+
remain under this license does not apply to any document created
102+
using the Font Software.
103+
104+
TERMINATION
105+
This license becomes null and void if any of the above conditions are
106+
not met.
107+
108+
DISCLAIMER
109+
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
110+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
111+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
112+
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
113+
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
114+
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
115+
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
116+
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
117+
OTHER DEALINGS IN THE FONT SOFTWARE.
118+
119+
--------------------------------------------------------------------------------
120+
16121
# Code: MIT License (https://opensource.org/licenses/MIT)
122+
17123
In the Font Awesome Free download, the MIT license applies to all non-font and
18124
non-icon files.
19125

126+
Copyright 2024 Fonticons, Inc.
127+
128+
Permission is hereby granted, free of charge, to any person obtaining a copy of
129+
this software and associated documentation files (the "Software"), to deal in the
130+
Software without restriction, including without limitation the rights to use, copy,
131+
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
132+
and to permit persons to whom the Software is furnished to do so, subject to the
133+
following conditions:
134+
135+
The above copyright notice and this permission notice shall be included in all
136+
copies or substantial portions of the Software.
137+
138+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
139+
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
140+
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
141+
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
142+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
143+
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
144+
145+
--------------------------------------------------------------------------------
146+
20147
# Attribution
21-
Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font
148+
149+
Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
22150
Awesome Free files already contain embedded comments with sufficient
23151
attribution, so you shouldn't need to do anything additional when using these
24152
files normally.
25153

26154
We've kept attribution comments terse, so we ask that you do not actively work
27-
to remove them from files, especially code. They're a great way for folks to
155+
to remove them from files, especially code. They're a great way for folks to
28156
learn about Font Awesome.
29157

158+
--------------------------------------------------------------------------------
159+
30160
# Brand Icons
161+
31162
All brand icons are trademarks of their respective owners. The use of these
32163
trademarks does not indicate endorsement of the trademark holder by Font
33164
Awesome, nor vice versa. **Please do not use brand logos for any purpose except

0 commit comments

Comments
 (0)