12345678910111213141516171819202122232425262728293031 |
- <!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.0"/>
- <title>Fourletters · Hang Out</title>
- <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>
- <header>
- <section class="container">
- <nav role="navigation">
- <ul>
- <%= if function_exported?(Routes, :live_dashboard_path, 2) do %>
- <li><%= link "LiveDashboard", to: Routes.live_dashboard_path(@conn, :home) %></li>
- <% end %>
- </ul>
- </nav>
- </a>
- </section>
- </header>
- <main role="main" class="container">
- <p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p>
- <p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p>
- <%= @inner_content %>
- </main>
- </body>
- </html>
|