mirror of
				https://github.com/livebook-dev/livebook.git
				synced 2025-11-01 00:06:04 +08:00 
			
		
		
		
	
		
			
				
	
	
		
			26 lines
		
	
	
	
		
			937 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			26 lines
		
	
	
	
		
			937 B
		
	
	
	
		
			Text
		
	
	
	
	
	
| <!DOCTYPE html>
 | |
| <html lang="en">
 | |
|   <head>
 | |
|     <meta charset="utf-8" />
 | |
|     <meta http-equiv="X-UA-Compatible" content="IE=edge" />
 | |
|     <meta name="viewport" content="width=device-width, initial-scale=1.0" />
 | |
|     <meta name="csrf-token" content={get_csrf_token()} />
 | |
|     <link rel="icon" type="image/svg+xml" href={~p"/favicon.svg"} />
 | |
|     <link rel="alternate icon" type="image/png" href={~p"/favicon.png"} />
 | |
|     <.live_title>
 | |
|       <%= assigns[:page_title] || "Livebook" %>
 | |
|     </.live_title>
 | |
|     <link phx-track-static rel="stylesheet" href={~p"/css/app.css"} />
 | |
|     <script>
 | |
|       window.LIVEBOOK_BASE_URL_PATH = "<%= Livebook.Config.base_url_path() %>";
 | |
|     </script>
 | |
|     <script phx-track-static defer type="text/javascript" src={~p"/js/app.js"}>
 | |
|     </script>
 | |
|   </head>
 | |
|   <body
 | |
|     class="bg-white"
 | |
|     data-feature-flags={Livebook.Config.enabled_feature_flags() |> Enum.join(",")}
 | |
|   >
 | |
|     <%= @inner_content %>
 | |
|   </body>
 | |
| </html>
 |