Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
b791363
refactor footer
ShubhamOulkar Jul 5, 2025
0f70d24
fix icons layout
ShubhamOulkar Jul 5, 2025
a23f0b7
remove font awesome icons
ShubhamOulkar Jul 6, 2025
bddd6f8
refactor header icons
ShubhamOulkar Jul 6, 2025
956c82a
redeploy netlify preview
ShubhamOulkar Jul 6, 2025
f5e4de0
use absolute path for a svg icons
ShubhamOulkar Jul 6, 2025
7249e96
replace img elements with CSS background-image and mask-image for the…
ShubhamOulkar Jul 6, 2025
ed1a96f
fix bugs and remove unused css classes
ShubhamOulkar Jul 6, 2025
c4f2232
apply thin scroller for tables (chrome)
ShubhamOulkar Jul 6, 2025
09e95cf
Merge branch 'gh-pages' into refactor-footer
ShubhamOulkar Jul 18, 2025
01fe93d
Merge branch 'gh-pages' into refactor-footer
ShubhamOulkar Jul 18, 2025
1a9d349
Merge branch 'refactor-footer' of https://github.com/ShubhamOulkar/ex…
ShubhamOulkar Jul 18, 2025
eee2428
inherit colors for footer social icons
ShubhamOulkar Jul 18, 2025
16be77c
simplify openjs icon
ShubhamOulkar Jul 18, 2025
0195bcf
use openjs white logo
ShubhamOulkar Jul 19, 2025
dc7afe6
simplify theme icons
ShubhamOulkar Jul 19, 2025
4278b80
fix theme icons
ShubhamOulkar Jul 19, 2025
ea489a4
fix background color
ShubhamOulkar Jul 19, 2025
1ff9973
fix bugs and refactor theme.js
ShubhamOulkar Jul 19, 2025
13a5c86
remove color flicker
ShubhamOulkar Jul 19, 2025
ad3166a
fix bugs and refactor theme.js
ShubhamOulkar Jul 19, 2025
20cd9c9
refactor
ShubhamOulkar Jul 19, 2025
9cadf27
Merge branch 'refactor-footer' of https://github.com/ShubhamOulkar/ex…
ShubhamOulkar Jul 19, 2025
2248f8b
remove comments from svg
ShubhamOulkar Jul 21, 2025
dd2c457
legacy fix: alignment of icons
ShubhamOulkar Jul 22, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 13 additions & 26 deletions _includes/footer.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,13 +3,8 @@
<footer>
<section id="footer-content">
<div id="footer-copyright">
<a href="https://openjsf.org/">
<img
src="https://raw.githubusercontent.com/openjs-foundation/artwork/main/openjs_foundation/openjs_foundation-logo-horizontal-color.svg"
alt="OpenJS Foundation" width="125" height="39" class="hidden-dark" />
<img
src="https://raw.githubusercontent.com/openjs-foundation/artwork/main/openjs_foundation/openjs_foundation-logo-horizontal-white.svg"
alt="OpenJS Foundation" width="125" height="39" class="hidden-light" />
<a href="https://openjsf.org/" class="openjs-logo" title="OpenJS Foundation">
{% include icons/openjs_foundation-logo-horizontal-white.svg %}
</a>
<div id="footer-policy">
<a href="https://terms-of-use.openjsf.org">
Expand All @@ -33,44 +28,36 @@
<div class="footer-social">
<div>
<a href="https://github.com/expressjs/express" aria-label="Go to the repository on GitHub">
<span class="hidden-dark">
{% include icons/github-light.svg %}
</span>
<span class="hidden-light">
{% include icons/github-dark.svg %}
</span>
{% include icons/github.svg %}
</a>
</div>
<div>
<a href="https://www.youtube.com/channel/UCYjxjAeH6TRik9Iwy5nXw7g"
aria-label="Go to the repository on Youtube">{% include icons/youtube.svg %}</a>
aria-label="Go to the repository on Youtube">
{% include icons/youtube.svg %}</a>
</div>
<div>
<a href="https://x.com/UseExpressJS" aria-label="Go to the repository on X">
<span class="hidden-dark">
{% include icons/x-light.svg %}
</span>
<span class="hidden-light">
{% include icons/x-dark.svg %}
</span>
<a href="https://x.com/UseExpressJS" aria-label="Go to the X account">
{% include icons/X.svg %}
</a>
</div>
<div>
<a href="https://openjs-foundation.slack.com/archives/C02QB1731FH"
aria-label="Go to the repository on Slack">{% include icons/slack.svg %}</a>
aria-label="Join Slack group">
{% include icons/slack.svg %}</a>
</div>
<div>
<a href="https://opencollective.com/express" aria-label="Go to the repository on Open Collective">{% include
<a href="https://opencollective.com/express" aria-label="Go to Open Collective">{% include
icons/opencollective.svg %}</a>
</div>
<div>
<a href="https://bsky.app/profile/expressjs.bsky.social" aria-label="Go to the repository on Bluesky">{%
<a href="https://bsky.app/profile/expressjs.bsky.social" aria-label="Go to the Bluesky">{%
include icons/bluesky.svg %}</a>
</div>
</div>
<a href="https://www.netlify.com">
<img src="https://www.netlify.com/v3/img/components/netlify-color-accent.svg" alt="Preview Deploys by Netlify"
width="80" />
<img src="https://www.netlify.com/v3/img/components/netlify-color-accent.svg" alt="Preview Deploys by Netlify"
width="80" />
</a>
</div>
</section>
Expand Down
1 change: 0 additions & 1 deletion _includes/head.html
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@
<link rel="stylesheet" href="/css/themes/dark-theme.css?_={{ site.time | date: '%s' }}">
<link rel="stylesheet" href="/css/style.css?_={{ site.time | date: '%s' }}">
<link rel="stylesheet" href="/css/sintax.css?_={{ site.time | date: '%s' }}">
<link rel="stylesheet" href="/css/font-awesome.min.css">
<link rel="stylesheet" href="/css/langs/{{ page.lang }}.css">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<meta name="description" content="{{page.description}}">
Expand Down
10 changes: 6 additions & 4 deletions _includes/header.html
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
<header>
<div id="mobile-menu">
<div id="nav-button" class="fa fa-bars fa-2x button"></div>
<div id="nav-button" class="header-btn">
{% include icons/hamburger.svg %}
</div>
</div>
<div class="logo-container">
<a href="/" title="Go to homepage" aria-label="Go to homepage">
Expand Down Expand Up @@ -245,9 +247,9 @@
</ul>
</nav>
<div class="header-right">
<button id="theme-toggle" type="button" class="theme-btn" title="change theme">
<i class="fa fa-moon-o fa-2x hidden-dark"></i>
<span class="sun-icon hidden-light"></span>
<button id="theme-toggle" type="button" class="theme-btn" title="change theme" aria-label="Switch to dark mode">
<span id="icon-moon">{% include icons/moon.svg %}</span>
<span id="icon-sun">{% include icons/sun.svg %}</span>
</button>
{% include language-picker.html %}
{% include language-picker-mobile.html %}
Expand Down
1 change: 1 addition & 0 deletions _includes/icons/X.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
11 changes: 0 additions & 11 deletions _includes/icons/github-dark.svg

This file was deleted.

11 changes: 0 additions & 11 deletions _includes/icons/github-light.svg

This file was deleted.

2 changes: 1 addition & 1 deletion _includes/icons/github.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions _includes/icons/hamburger.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
3 changes: 3 additions & 0 deletions _includes/icons/i18n.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
5 changes: 5 additions & 0 deletions _includes/icons/moon.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
61 changes: 61 additions & 0 deletions _includes/icons/openjs_foundation-logo-horizontal-white.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
17 changes: 17 additions & 0 deletions _includes/icons/sun.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
1 change: 0 additions & 1 deletion _includes/icons/x-dark.svg

This file was deleted.

Loading