ui stuff, proxy?, and whatever else

This commit is contained in:
first@lynx.com
2026-08-17 14:23:34 -04:00
parent b1a1403c13
commit 9d640ff608
18 changed files with 1262 additions and 149 deletions

View File

@ -5,11 +5,11 @@
<!-- Google tag (gtag.js) -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-J0Y3T4HN4N"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-J0Y3T4HN4N');
gtag('config', 'G-J0Y3T4HN4N');
</script>
<!-- initialize theme vars
@ -28,7 +28,7 @@
<!-- seo + other things -->
<title>Projects | Selenite</title>
<title>Selenite</title>
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width,initial-scale=1" />
@ -40,17 +40,28 @@
</head>
<body>
<input type="text" class="searchbar" id="gamesearch" placeholder="Type here to search.." />
<select id="gamesort">
<option value="az">a -> z</option>
<option value="za">z -> a</option>
<option value="new">newest</option>
<option value="played">your top games</option>
<option value="global">global top games</option>
</select>
<div class="gamesToolbar">
<input type="text" class="searchbar" id="gamesearch" placeholder="Type here to search.." />
<button id="filtersToggle" type="button">filters</button>
<button id="randomGame">random game</button>
</div>
<div id="tagFilters">
<p class="filterLabel">sorting</p>
<select id="gamesort">
<option value="az">a -> z</option>
<option value="za">z -> a</option>
<option value="new">newest</option>
<option value="played">your top games</option>
<option value="global">global top games</option>
</select>
<p class="filterLabel" id="tagChipsLabel">game genres</p>
<div id="tagChips"></div>
</div>
<p id="gameCount">xx games loaded..</p>
<p id="starredHeader">starred games</p>
<div id="starredgames"></div>
<p id="recentHeader">recently played</p>
<div id="recentgames"></div>
<p id="topHeader" class="title">top games</p>
<div id="topGames"></div>
<p id="allHeader" class="title">all games</p>