68 lines
2.2 KiB
HTML
Executable File
68 lines
2.2 KiB
HTML
Executable File
<!DOCTYPE html>
|
|
<html class="sl-theme-dark" lang="en">
|
|
<head>
|
|
<!-- initialize theme vars
|
|
https://coolors.co/10002b-240046-3c096c-5a189a-7b2cbf-9d4edd-c77dff-e0aaff -->
|
|
|
|
<meta content="{{ name }}" property="og:title" />
|
|
<meta content="{{ about_none }}" property="og:description" />
|
|
<meta content="{{ user_pfp }}" property="og:image" />
|
|
<meta content="#c77dff" data-react-helmet="true" name="theme-color" />
|
|
<!-- initialize externals -->
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.7.0/jquery.min.js"></script>
|
|
<script src=" https://cdn.jsdelivr.net/npm/js-cookie@3.0.5/dist/js.cookie.min.js "></script>
|
|
|
|
<!-- initialize my stuff -->
|
|
<script src="/js/all.min.js"></script>
|
|
<script src="/js/main.js"></script>
|
|
|
|
<link rel="stylesheet" href="/style.css" />
|
|
|
|
<!-- seo + other things -->
|
|
<style>{{ custom_css }}</style>
|
|
<title>{{ name }}'s Profile | Selenite</title>
|
|
<link rel="icon" href="/favicon.ico" />
|
|
</head>
|
|
<alerts> </alerts>
|
|
<body class="profile">
|
|
<header>
|
|
<a href="/index.html">Home</a>
|
|
<a href="/bookmarklets.html">Bookmarklets</a>
|
|
<a href="/projects.html">Games</a>
|
|
<a href="/apps.html">Apps</a>
|
|
<a href="/settings.html">Settings</a>
|
|
<a id="blank" href="#">Open Blank</a>
|
|
<a href="/u/" class="usericon"><img src="/img/user.svg" /></a>
|
|
</header>
|
|
<main>
|
|
<div class="profile top">
|
|
<img src="{{ user_pfp }}" class="pfp" />
|
|
<div class="profile top text">
|
|
<h1>{{ name }}</h1>
|
|
<div class="samerow">{{ badges }}</div>
|
|
<h2>Joined {{ join_date }}</h2>
|
|
<h2>Last online {{ online_time }}</h2>
|
|
</div>
|
|
<div class="profile top text right">
|
|
<h1>About Me</h1>
|
|
<h2 class="about">{{ about }}</h2>
|
|
</div>
|
|
</div>
|
|
<div class="profile played">
|
|
<h2>Top Games:</h2>
|
|
<div id="played-games">
|
|
{{ played_games }}
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<footer>
|
|
<a href="https://gitlab.com/skysthelimit.dev/selenite">Source</a>
|
|
<a href="https://discord.gg/7jyufnwJNf">Discord</a>
|
|
<a href="/suggest.html">Suggestions & Bugs</a>
|
|
<a href="/contact.html">Contact</a>
|
|
<a href="/support.html">Donate</a>
|
|
<a href="/about.html">About</a>
|
|
</footer>
|
|
</body>
|
|
</html>
|