eleventy-mainroad/_includes/layouts/base.webc

29 lines
646 B
Plaintext
Raw Normal View History

2023-05-03 01:18:17 +00:00
<!doctype html>
<html :lang="en-us">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<!--- Uncomment this if you'd like folks to know that you used Eleventy to build your site! --->
<meta name="generator" :content="eleventy.generator">
<!--- Build and embed the bundles needed for each page --->
<style @raw="getBundle('css')" webc:keep></style>
<script @raw="getBundle('js')" webc:keep></script>
</head>
<body>
<main id="skip">
<div class="container">
<template @raw="content" webc:nokeep></template>
</div>
</main>
<footer></footer>
</body>
</html>