42 lines
1011 B
Plaintext
42 lines
1011 B
Plaintext
<!DOCTYPE HTML>
|
|
<html class="no-js" lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>THE TITLE IS THIS!</title>
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
|
|
<meta name="description" content="THE DESCRIPTION IS THIS!">
|
|
<meta name="author" content="I AM THE AUTHOR">
|
|
|
|
<meta property="og:title" content="">
|
|
<meta property="og:type" content="">
|
|
<meta property="og:url" content="">
|
|
<meta property="og:image" content="">
|
|
|
|
<link rel="apple-touch-icon" href="icon.png">
|
|
<!-- Place favicon.ico in the root directory -->
|
|
|
|
<script>
|
|
document.documentElement.classList.remove('no-js');
|
|
</script>
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<header class="header">
|
|
</header>
|
|
|
|
<main id="js-main" class="main">
|
|
<%# weird loader string syntax because https://github.com/bazilio91/ejs-compiled-loader/issues/46 %>
|
|
<%- require('!!ejs-compiled-loader?{}!./partials/component.ejs')({ text: 'text is text yahh!!!' }) %>
|
|
</main>
|
|
|
|
<footer class="footer">
|
|
</footer>
|
|
</body>
|
|
</html>
|
|
|