mirror of
https://github.com/riwiwa/muzi.git
synced 2026-02-28 11:56:57 -08:00
23 lines
509 B
Plaintext
23 lines
509 B
Plaintext
<!doctype html>
|
|
<html>
|
|
<head>
|
|
<link rel="stylesheet" href="/files/style.css" type="text/css">
|
|
<title>
|
|
muzi | {{.Username}}'s Profile
|
|
</title>
|
|
</head>
|
|
<body>
|
|
<div class="profile-top">
|
|
<img src="{{.Pfp}}" alt="{{.Username}}'s avatar">
|
|
<div class="username-bio">
|
|
<h1>{{.Username}}</h1>
|
|
<h2>{{.Bio}}</h2>
|
|
</div>
|
|
<div class="user-stats-top">
|
|
<h3>101238 Listens</h3>
|
|
<h3>1298 Artists</h3>
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|