26 lines
740 B
HTML
26 lines
740 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>{{.Title}}</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
<body>
|
|
<main class="shell">
|
|
<section class="hero compact">
|
|
<p class="badge">Marketplace</p>
|
|
<h1>Browse LLM skills</h1>
|
|
<div class="actions">
|
|
<a class="btn" href="/dashboard">Back to Dashboard</a>
|
|
<a class="btn" href="/my-skills">My Purchases</a>
|
|
<a class="btn" href="/auth/logout">Logout</a>
|
|
</div>
|
|
</section>
|
|
<section>
|
|
<div id="skill-grid" class="card-grid"></div>
|
|
</section>
|
|
</main>
|
|
<script src="/static/app.js"></script>
|
|
</body>
|
|
</html>
|