Lately I was toiling while writing a ClojureScript client. This made me crave Elm. I'm going to rewrite the ClojureScript client using Elm, but along the way, I'm stopping off here and recording my starter boilerplate.
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			362 B
		
	
	
	
		
			HTML
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="UTF-8" />
 | |
|     <title>Elm SPA</title>
 | |
|     <link rel="stylesheet" href="./output.css" />
 | |
|     <script src="./Main.min.js"></script>
 | |
|   </head>
 | |
|   <body class="font-serif">
 | |
|     <div id="mount"></div>
 | |
|     <script>
 | |
|      Elm.Main.init({node: document.getElementById("mount")});
 | |
|     </script>
 | |
|   </body>
 | |
| </html>
 |