pokemon-couture/lib/pokemon_couture_web/templates/layout/root.html.leex

13 lines
409 B
Plaintext
Raw Normal View History

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>