Created
June 2, 2021 13:31
-
-
Save pretzelhands/e32dddcb6110478b45b98335cbe8606b to your computer and use it in GitHub Desktop.
Forbidden Prototype Template
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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