22 lines
1,019 B
Text
22 lines
1,019 B
Text
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><%= (typeof pageTitle !== 'undefined' && pageTitle) ? `${pageTitle} | ${config?.brand?.name || 'AutoTQ'}` : (config?.brand?.name || 'AutoTQ') %></title>
|
|
<meta
|
|
name="description"
|
|
content="<%= (typeof metaDescription !== 'undefined' && metaDescription) ? 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>
|
|
<% const _pageName = (typeof pageName !== 'undefined' && pageName) ? pageName : 'default'; %>
|
|
<body class="page-<%= _pageName %>">
|
|
<%- include('partials/header', { config, pageName: _pageName }) %>
|
|
<%- body %>
|
|
<%- include('partials/footer', { config }) %>
|
|
<script src="/js/main.js" defer></script>
|
|
</body>
|
|
</html>
|