29 lines
646 B
Plaintext
29 lines
646 B
Plaintext
<!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>
|