@dscodotco/theme-cli
Version:
A CLI tool for developing Shopify themes
23 lines (22 loc) • 629 B
HTML
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Theme Development</title>
<link rel="stylesheet" href="/dev-ui.css" />
<script src="/dev-ui.js" defer></script>
</head>
<body>
<div id="dev-ui">
<div class="dev-ui-header">
<h1>Theme Development</h1>
<div class="dev-ui-controls">
<button id="check-theme">Check Theme</button>
<button id="reload-page">Reload Page</button>
</div>
</div>
<div id="theme-check-results"></div>
</div>
</body>
</html>