gibcasa/templates/index.xhtml
Pratyush Desai d3193b92dc
Initial Commit
Set the base routing and base html

Signed-off-by: Pratyush Desai <pratyush.desai@liberta.casa>
2024-10-15 01:53:17 +05:30

29 lines
849 B
HTML

<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link rel="stylesheet" href="/static/styles.css" />
<title>Game Server Manager</title>
</head>
<body>
<div class="container">
<h1>Choose Your Game</h1>
<div class="games">
<div class="game">
<a href="/hl2">
<img src="/static/hl2cover.jpeg" alt="Half-Life 2" />
<h2>Half-Life 2</h2>
</a>
</div>
<div class="game">
<a href="/quake">
<img src="/static/q1cover.jpg" alt="Quake" />
<h2>Quake</h2>
</a>
</div>
</div>
</div>
</body>
</html>