danielrosehill's picture
commit
279efce
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Category - Claude Code Commands</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<header>
<div class="container">
<a href="index.html" class="back-link">← Back to Categories</a>
<h1 id="categoryTitle">Commands</h1>
</div>
</header>
<main class="container">
<div class="search-box">
<input type="text" id="searchInput" placeholder="Search commands in this category..." onkeyup="filterCommands()">
</div>
<div class="commands-list" id="commandsList">
<!-- Commands will be loaded here by JavaScript -->
</div>
</main>
<footer>
<div class="container">
<p>Created by Daniel Rosehill | <a href="https://github.com/danielrosehill/Claude-Code-Linux-Desktop-Slash-Commands" target="_blank">GitHub Repository</a></p>
</div>
</footer>
<script src="script.js"></script>
</body>
</html>