21 lines
798 B
Text
21 lines
798 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><%= pageTitle ? `${pageTitle} | ${config.brand.name}` : config.brand.name %></title>
|
|
<meta
|
|
name="description"
|
|
content="<%= metaDescription || config.brand.tagline %>"
|
|
/>
|
|
<link rel="preconnect" href="https://images.squarespace-cdn.com" />
|
|
<link rel="preconnect" href="https://img.youtube.com" />
|
|
<link rel="stylesheet" href="/css/style.css" />
|
|
</head>
|
|
<body class="page-<%= pageName || 'default' %>">
|
|
<%- include('partials/header', { config, pageName }) %>
|
|
<main><%- body %></main>
|
|
<%- include('partials/footer', { config }) %>
|
|
<script src="/js/main.js" defer></script>
|
|
</body>
|
|
</html>
|