mirror of
https://github.com/rocky-linux/peridot.git
synced 2024-11-01 04:41:22 +00:00
28 lines
640 B
Handlebars
28 lines
640 B
Handlebars
|
<!DOCTYPE html>
|
||
|
<html lang="en" class="min-h-screen">
|
||
|
<head>
|
||
|
<meta charset="utf-8" />
|
||
|
|
||
|
<title><%= title %></title>
|
||
|
|
||
|
<% if(style) { %>
|
||
|
<link rel="stylesheet" href="<%= style %>" />
|
||
|
<% } %> <% if(typekit) { %>
|
||
|
<link rel="stylesheet" href="<%= typekit %>" />
|
||
|
<% } %>
|
||
|
</head>
|
||
|
<body class="bg-gray-100 font-sans min-h-screen">
|
||
|
<div id="root" class="bg-gray-100 flex h-full"></div>
|
||
|
<% if(script) { %>
|
||
|
<script src="<%= script %>"></script>
|
||
|
<% } %>
|
||
|
<script>
|
||
|
window.state = {
|
||
|
{{#each this}}
|
||
|
'{{@key}}': '{{this}}',
|
||
|
{{/each}}
|
||
|
}
|
||
|
</script>
|
||
|
</body>
|
||
|
</html>
|