2021-09-01 13:29:11 +02:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<%= csrf_meta_tag() %>
|
2021-09-08 13:35:27 +02:00
|
|
|
<%= live_title_tag assigns[:page_title] || "PokemonCouture · Phoenix Framework" %>
|
2021-09-01 13:29:11 +02:00
|
|
|
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
|
|
|
|
<script defer type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<%= @inner_content %>
|
|
|
|
</body>
|
|
|
|
</html>
|