-
-
Notifications
You must be signed in to change notification settings - Fork 6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enhancements: Theme Skin, Timezone Display, Social Profiles, and Libr…
…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
Showing
2,539 changed files
with
343,815 additions
and
62,374 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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 | ||
|
@@ -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: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.