26 lines
593 B
HTML
26 lines
593 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<title>Hi</title>
|
|
<style>
|
|
body {
|
|
font-family: Arial, sans-serif;
|
|
text-align: center;
|
|
margin-top: 50px;
|
|
}
|
|
img {
|
|
margin-top: 20px;
|
|
width: 150px;
|
|
height: 150px;
|
|
border-radius: 50%;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<h1>Hi {{.Username}}</h1>
|
|
|
|
<img src="{{avatar .Username}}" alt="Profile Picture" />
|
|
</body>
|
|
</html>
|