Skip to content

Instantly share code, notes, and snippets.

@pretzelhands
Created June 2, 2021 13:31
Show Gist options
  • Save pretzelhands/e32dddcb6110478b45b98335cbe8606b to your computer and use it in GitHub Desktop.
Save pretzelhands/e32dddcb6110478b45b98335cbe8606b to your computer and use it in GitHub Desktop.
Forbidden Prototype Template
<?php
// Your PHP code here
?>
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Prototype</title>
</head>
<body>
<script type="module">
// Your ES6 code here.
</script>
<script src="https://unpkg.com/tailwindcss-jit-cdn"></script>
<script type="module">
import tailwindForms from 'https://cdn.skypack.dev/@tailwindcss/forms';
window.tailwindConfig = {
plugins: [
tailwindForms,
]
};
window.tailwindCSS.refresh();
</script>
<script type="tailwind-config">
window.tailwindConfig
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment