Current section
Files
Jump to
Current section
Files
lib/templates/layout/root.html.leex
<!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, minimum-scale=1.0, maximum-scale=1.0, shrink-to-fit=no, user-scalable=no"/>
<%= csrf_meta_tag() %>
<title><%= assigns[:page_title] || "ExUssdSimulator" %></title>
<link rel="stylesheet" href="<%= Routes.static_path(@socket, "/css/app.css") %>" />
</head>
<body class="bg-gray-900">
<%= @inner_content %>
</body>
<script defer type="text/javascript" src="<%= Routes.static_path(@socket, "/js/app.js") %>"></script>
</html>