Packages

Flex is a lightweight, Flask-inspired web framework for Elixir.

Current section

Files

Jump to
flex_web priv new_app_template lib templates base app.html.eex
Raw

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>&copy; <%= DateTime.utc_now().year %> Flex App</p>
</footer>
</body>
</html>