-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlayout.html.eex
22 lines (22 loc) · 897 Bytes
/
layout.html.eex
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
<!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">
<meta name="description" content="">
<meta name="author" content="">
</head>
<body>
<div style='border-bottom:1px solid gray; padding-bottom:10px'>
<%= for model <- assigns[:models] do %>
<a href='<%= "/autoadmin/index/#{model}"%>' style='margin:10px; font-size:20px'><%= String.capitalize("#{model}") %></a>
<% end %>
</div>
<h2 style="color:green;"><%= get_flash(@conn, :info) %></h2>
<h2 style="color:red;"><%= get_flash(@conn, :error) %></h2>
<%= render @view_module, @view_template, assigns %>
<h2 style="color:green;"><%= get_flash(@conn, :info) %></h2>
<h2 style="color:red;"><%= get_flash(@conn, :error) %></h2>
</body>
</html>