og/views/layout.eta

24 lines
458 B
Text
Raw Normal View History

2023-08-02 18:51:06 -04:00
<% if (it.debug) { %>
2023-08-02 18:55:36 -04:00
<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>
2023-08-02 18:51:06 -04:00
<% } %>
<%~ it.body %>