Skip to content

Commit

Permalink
Enhancements: Theme Skin, Timezone Display, Social Profiles, and Libr…
Browse files Browse the repository at this point in the history
…ary 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
  • Loading branch information
plinkr authored Aug 16, 2024
1 parent 7953f37 commit c98fd1e
Show file tree
Hide file tree
Showing 2,539 changed files with 343,815 additions and 62,374 deletions.
2 changes: 1 addition & 1 deletion _config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ url: 'http://webjeda.com'

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

# Tracker
Expand Down
7 changes: 5 additions & 2 deletions _data/data.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ sidebar:
# Sidebar links
email: [email protected]
phone: 012 345 6789
timezone: America/Cancun Timezone
timezone: America/Cancun # Enter your timezone, e.g., America/Havana, Africa/Casablanca, America/North_Dakota/Center
citizenship:
website: blog.webjeda.com #do not add http://
website: https://blog.webjeda.com/ # Include the full website URL, including "http://" or "https://".
linkedin: alandoe
xing: alandoe
github: sharu725
Expand All @@ -28,6 +28,9 @@ sidebar:
stack-overflow: # Number/Username, e.g. 123456/alandoe
codewars:
goodreads: # Number-Username, e.g. 123456-alandoe
mastodon: https://fosstodon.org/@plinkr # Please include your full Mastodon link here.
hackerrank: plinkr # Please provide your HackerRank username.
leetcode: plinkr # Please provide your LeetCode username.
pdf: http://www.africau.edu/images/default/sample.pdf

languages:
Expand Down
19 changes: 6 additions & 13 deletions _includes/analytics.html
Original file line number Diff line number Diff line change
@@ -1,16 +1,9 @@
<!-- Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id={{ site.analytics }}"></script>
<script>
(function (i, s, o, g, r, a, m) {
i['GoogleAnalyticsObject'] = r;
i[r] = i[r] || function () {
(i[r].q = i[r].q || []).push(arguments)
}, i[r].l = 1 * new Date();
a = s.createElement(o),
m = s.getElementsByTagName(o)[0];
a.async = 1;
a.src = g;
m.parentNode.insertBefore(a, m)
})(window, document, 'script', '//www.google-analytics.com/analytics.js', 'ga');
ga('create', '{{site.analytics}}', 'auto');
ga('send', 'pageview');
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());

gtag('config', '{{ site.analytics }}');
</script>
29 changes: 24 additions & 5 deletions _includes/contact.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

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

Expand All @@ -33,7 +33,7 @@

{% if sidebar.website %}
<li class="website"><i class="fas fa-globe-americas"></i>
<a href="http://{{ sidebar.website }}" target="_blank">{{ sidebar.website }}</a>
<a href="{{ sidebar.website }}" target="_blank">{{ sidebar.website }}</a>
</li>
{% endif %}

Expand All @@ -51,19 +51,19 @@

{% if sidebar.github %}
<li class="github"><i class="fab fa-github"></i>
<a href="http://github.com/{{ sidebar.github }}" target="_blank">{{ sidebar.github }}</a>
<a href="https://github.com/{{ sidebar.github }}" target="_blank">{{ sidebar.github }}</a>
</li>
{% endif %}

{% if sidebar.gitlab %}
<li class="gitlab"><i class="fab fa-gitlab"></i>
<a href="http://gitlab.com/{{ sidebar.gitlab }}" target="_blank">{{ sidebar.gitlab }}</a>
<a href="https://gitlab.com/{{ sidebar.gitlab }}" target="_blank">{{ sidebar.gitlab }}</a>
</li>
{% endif %}

{% if sidebar.bitbucket %}
<li class="bitbucket"><i class="fab fa-bitbucket"></i>
<a href="http://bitbucket.com/{{ sidebar.bitbucket }}" target="_blank">{{ sidebar.bitbucket }}</a>
<a href="https://bitbucket.com/{{ sidebar.bitbucket }}" target="_blank">{{ sidebar.bitbucket }}</a>
</li>
{% endif %}

Expand All @@ -73,6 +73,13 @@
</li>
{% endif %}

{% if sidebar.mastodon %}
{% assign mastodon_handle = sidebar.mastodon | split: '/' %}
<li class="mastodon"><i class="fab fa-mastodon"></i>
<a href="{{ sidebar.mastodon }}" target="_blank">{{ mastodon_handle[3] }}@{{ mastodon_handle[2] }}</a>
</li>
{% endif %}

{% if sidebar.stack-overflow %}
<li class="stack-overflow"><i class="fab fa-stack-overflow"></i>
<a href="https://stackoverflow.com/users/{{ sidebar.stack-overflow }}" target="_blank">{{ sidebar.stack-overflow }}</a>
Expand All @@ -85,6 +92,18 @@
</li>
{% endif %}

{% if sidebar.hackerrank %}
<li class="hackerrank"><i class="fab fa-hackerrank"></i>
<a href="https://www.hackerrank.com/profile/{{ sidebar.hackerrank }}" target="_blank">{{ sidebar.hackerrank }}</a>
</li>
{% endif %}

{% if sidebar.leetcode %}
<li class="leetcode"><i class="fas fa-code"></i>
<a href="https://leetcode.com/u/{{ sidebar.leetcode }}" target="_blank">{{ sidebar.leetcode }}</a>
</li>
{% endif %}

{% if sidebar.goodreads %}
<li class="goodreads-g"><i class="fab fa-goodreads-g"></i>
<a href="https://www.goodreads.com/user/show/{{ sidebar.goodreads }}" target="_blank">{{ sidebar.goodreads }}</a>
Expand Down
8 changes: 8 additions & 0 deletions _sass/_base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -230,6 +230,14 @@ p {
margin-bottom: 15px;
}
}
.oss-section {
.intro {
margin-bottom: 30px;
}
.item {
margin-bottom: 15px;
}
}

.publication-title {
font-size: 16px;
Expand Down
10 changes: 10 additions & 0 deletions _sass/skins/_tealblue.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
/* styles-6 variables */
$theme-color: #2B6781;
$text-color: #3F4650;
$text-color-secondary: #545E6C;
$text-grey: #97AAC3;
$divider: #e8e8e8;
$lighter-grey: #ccc;
$darker-grey: #666;
$smoky-white: #f5f5f5;
$heart: #fb866a;
147 changes: 139 additions & 8 deletions assets/plugins/font-awesome/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,33 +1,164 @@
Fonticons, Inc. (https://fontawesome.com)

--------------------------------------------------------------------------------

Font Awesome Free License
-------------------------

Font Awesome Free is free, open source, and GPL friendly. You can use it for
commercial projects, open source projects, or really almost whatever you want.
Full Font Awesome Free license: https://fontawesome.com/license.
Full Font Awesome Free license: https://fontawesome.com/license/free.

--------------------------------------------------------------------------------

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

# Fonts: SIL OFL 1.1 License (https://scripts.sil.org/OFL)
In the Font Awesome Free download, the SIL OLF license applies to all icons
The Font Awesome Free download is licensed under a Creative Commons
Attribution 4.0 International License and applies to all icons packaged
as SVG and JS file types.

--------------------------------------------------------------------------------

# Fonts: SIL OFL 1.1 License

In the Font Awesome Free download, the SIL OFL license applies to all icons
packaged as web and desktop font files.

Copyright (c) 2024 Fonticons, Inc. (https://fontawesome.com)
with Reserved Font Name: "Font Awesome".

This Font Software is licensed under the SIL Open Font License, Version 1.1.
This license is copied below, and is also available with a FAQ at:
http://scripts.sil.org/OFL

SIL OPEN FONT LICENSE
Version 1.1 - 26 February 2007

PREAMBLE
The goals of the Open Font License (OFL) are to stimulate worldwide
development of collaborative font projects, to support the font creation
efforts of academic and linguistic communities, and to provide a free and
open framework in which fonts may be shared and improved in partnership
with others.

The OFL allows the licensed fonts to be used, studied, modified and
redistributed freely as long as they are not sold by themselves. The
fonts, including any derivative works, can be bundled, embedded,
redistributed and/or sold with any software provided that any reserved
names are not used by derivative works. The fonts and derivatives,
however, cannot be released under any other type of license. The
requirement for fonts to remain under this license does not apply
to any document created using the fonts or their derivatives.

DEFINITIONS
"Font Software" refers to the set of files released by the Copyright
Holder(s) under this license and clearly marked as such. This may
include source files, build scripts and documentation.

"Reserved Font Name" refers to any names specified as such after the
copyright statement(s).

"Original Version" refers to the collection of Font Software components as
distributed by the Copyright Holder(s).

"Modified Version" refers to any derivative made by adding to, deleting,
or substituting — in part or in whole — any of the components of the
Original Version, by changing formats or by porting the Font Software to a
new environment.

"Author" refers to any designer, engineer, programmer, technical
writer or other person who contributed to the Font Software.

PERMISSION & CONDITIONS
Permission is hereby granted, free of charge, to any person obtaining
a copy of the Font Software, to use, study, copy, merge, embed, modify,
redistribute, and sell modified and unmodified copies of the Font
Software, subject to the following conditions:

1) Neither the Font Software nor any of its individual components,
in Original or Modified Versions, may be sold by itself.

2) Original or Modified Versions of the Font Software may be bundled,
redistributed and/or sold with any software, provided that each copy
contains the above copyright notice and this license. These can be
included either as stand-alone text files, human-readable headers or
in the appropriate machine-readable metadata fields within text or
binary files as long as those fields can be easily viewed by the user.

3) No Modified Version of the Font Software may use the Reserved Font
Name(s) unless explicit written permission is granted by the corresponding
Copyright Holder. This restriction only applies to the primary font name as
presented to the users.

4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font
Software shall not be used to promote, endorse or advertise any
Modified Version, except to acknowledge the contribution(s) of the
Copyright Holder(s) and the Author(s) or with their explicit written
permission.

5) The Font Software, modified or unmodified, in part or in whole,
must be distributed entirely under this license, and must not be
distributed under any other license. The requirement for fonts to
remain under this license does not apply to any document created
using the Font Software.

TERMINATION
This license becomes null and void if any of the above conditions are
not met.

DISCLAIMER
THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT
OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE
COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY,
INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL
DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM
OTHER DEALINGS IN THE FONT SOFTWARE.

--------------------------------------------------------------------------------

# Code: MIT License (https://opensource.org/licenses/MIT)

In the Font Awesome Free download, the MIT license applies to all non-font and
non-icon files.

Copyright 2024 Fonticons, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in the
Software without restriction, including without limitation the rights to use, copy,
modify, merge, publish, distribute, sublicense, and/or sell copies of the Software,
and to permit persons to whom the Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

--------------------------------------------------------------------------------

# Attribution
Attribution is required by MIT, SIL OLF, and CC BY licenses. Downloaded Font

Attribution is required by MIT, SIL OFL, and CC BY licenses. Downloaded Font
Awesome Free files already contain embedded comments with sufficient
attribution, so you shouldn't need to do anything additional when using these
files normally.

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

--------------------------------------------------------------------------------

# Brand Icons

All brand icons are trademarks of their respective owners. The use of these
trademarks does not indicate endorsement of the trademark holder by Font
Awesome, nor vice versa. **Please do not use brand logos for any purpose except
Expand Down
Loading

0 comments on commit c98fd1e

Please sign in to comment.