From 63e91afa7f574d6534ef13d007d6071dfa1ea59d Mon Sep 17 00:00:00 2001 From: naftalimurgor Date: Tue, 28 Apr 2026 13:15:15 +0300 Subject: [PATCH 1/2] Update Exglos heroes community section --- index.html | 59 ++++++++++++++++++++++++++++++++++++------------------ 1 file changed, 40 insertions(+), 19 deletions(-) diff --git a/index.html b/index.html index 705acc4..151edac 100644 --- a/index.html +++ b/index.html @@ -182,16 +182,16 @@

VPN -
+
-

hodlers

-

Community proofs, kept readable.

-

Verified EXG holders, public addresses on the Exglos network.

+

heros

+

The community behind Exglos

+

Public wallets and concise context for the key people and addresses around EXG.

>0xE974e991668CDEAF98e03A2154363a8F20494909

-

jo.exglos.com

-

'I have used only crypto money throughout my entire life.'

+

t.me/J0satoshi

-

7961C6, scientist, coder

+

Max, founder

0x7961c6AD766F0306C67b3b2660fE74070ba1aBEA0xC5E4045E291EE6a414beb298310fF41b86D53666

-

7961C6.exglos.com

-

'Blockchain is one of the greatest inventions of mankind.'

+

No longer a holder, active member who frequently changes names.

-

Max, investor, blogger

+

x7961C6, investor pool

0xC5E4045E291EE6a414beb298310fF41b86D536660x7961c6AD766F0306C67b3b2660fE74070ba1aBEA

-

max.exglos.com

-

'Exglos is my best investment.'

+

Likely an investor pool, shows presence but appears inactive.

-

HC, influencer, auditor

+

hc, ghost

HC, influencer, auditor >0xE19299E010a3c7870019a9B0E958DD138284A044

-

hc.exglos.com

+

Publicly labeled Exglos a scam, abandoned projects, and disappeared, leaving EXG and unwithdrawn dividends.

+
+ +
+

Alex, investor

+

+ 0xfD98cAE4f58D2A94b1e8bE9DcE3860b334610bb9 +

+
+ +
+

Naftali, developer

+

+ 0xF979a3F1567eF18A5D77e8F4b6f9899Cf561d486 +

From fcae719d8b106aa06e4f694375c272b84785de8f Mon Sep 17 00:00:00 2001 From: naftalimurgor Date: Tue, 28 Apr 2026 13:47:19 +0300 Subject: [PATCH 2/2] Add light and dark theme toggle --- app-1.5.0.js | 53 +++++++++++++++++++ index.html | 25 ++++++++- style-1.5.0.css | 133 +++++++++++++++++++++++++++++++++++++++++++----- 3 files changed, 198 insertions(+), 13 deletions(-) diff --git a/app-1.5.0.js b/app-1.5.0.js index dce3634..ba14325 100644 --- a/app-1.5.0.js +++ b/app-1.5.0.js @@ -2,10 +2,63 @@ (function () { window.addEventListener('load', function () { + setupThemeToggle(); preserveQueryParams(); setupMobileMenu(); }); + function setupThemeToggle() { + var root = document.documentElement; + var toggle = document.getElementById('themeToggle'); + var metaThemeColor = document.getElementById('themeColorMeta'); + if (!toggle) { + return; + } + + function getStoredTheme() { + try { + return window.localStorage.getItem('exglos-theme'); + } catch (error) { + return null; + } + } + + function setStoredTheme(theme) { + try { + window.localStorage.setItem('exglos-theme', theme); + } catch (error) { + // Ignore storage failures and keep the active theme for this session only. + } + } + + function resolveTheme() { + var storedTheme = getStoredTheme(); + return storedTheme === 'dark' ? 'dark' : 'light'; + } + + function applyTheme(theme) { + var nextTheme = theme === 'dark' ? 'dark' : 'light'; + var nextAria = nextTheme === 'dark' ? 'Switch to light mode' : 'Switch to dark mode'; + + root.setAttribute('data-theme', nextTheme); + toggle.setAttribute('aria-pressed', String(nextTheme === 'dark')); + toggle.setAttribute('aria-label', nextAria); + + if (metaThemeColor) { + metaThemeColor.setAttribute('content', nextTheme === 'dark' ? '#0b0f15' : '#f7f8fa'); + } + } + + applyTheme(resolveTheme()); + + toggle.addEventListener('click', function () { + var currentTheme = root.getAttribute('data-theme') === 'dark' ? 'dark' : 'light'; + var nextTheme = currentTheme === 'dark' ? 'light' : 'dark'; + setStoredTheme(nextTheme); + applyTheme(nextTheme); + }); + } + function preserveQueryParams() { var query = window.location.search; if (!query) { diff --git a/index.html b/index.html index 151edac..e9ee8c4 100644 --- a/index.html +++ b/index.html @@ -7,7 +7,7 @@ - + @@ -24,6 +24,26 @@ + @@ -52,6 +72,9 @@ rel="noreferrer" >Buy EXG +