Current section
Files
Jump to
Current section
Files
priv/new_app_template/lib/templates/base/app.html.eex
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title><%= @title %></title>
<style>
body {
font-family: Arial, sans-serif;
line-height: 1.6;
margin: 0;
padding: 20px;
}
</style>
</head>
<body>
<header>
<h1><%= @title %></h1>
</header>
<main>
<%= @main_content %>
</main>
<footer>
<p>© <%= DateTime.utc_now().year %> Flex App</p>
</footer>
</body>
</html>