@dscodotco/theme-cli
Version:
A CLI tool for developing Shopify themes
46 lines (45 loc) • 1.05 kB
HTML
<html>
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Error</title>
<style>
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
margin: 0;
padding: 2rem;
background: #f5f5f5;
}
.error-container {
max-width: 800px;
margin: 0 auto;
background: white;
padding: 2rem;
border-radius: 8px;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
h1 {
color: #d82c0d;
margin-top: 0;
}
pre {
background: #f5f5f5;
padding: 1rem;
border-radius: 4px;
overflow-x: auto;
}
</style>
</head>
<body>
<div class="error-container">
<h1>Error</h1>
<p>{{message}}</p>
{{#if stack}}
<h2>Stack Trace</h2>
<pre>{{stack}}</pre>
{{/if}}
</div>
</body>
</html>