og/views/layout.eta
2023-08-02 18:54:54 -05:00

24 lines
458 B
Text

<% if (it.debug) { %>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
:root {
height: 100%;
font-family: 'Figtree', Arial, Helvetica, sans-serif;
}
* {
font-family: inherit;
}
body {
margin: 0;
background-color: black;
display: grid;
place-items: center;
height: 100%;
}
</style>
<title>OpenGraph Debug Preview</title>
</head>
<% } %>
<%~ it.body %>