Packages

A few sentences (a paragraph) describing the project.

Current section

Files

Jump to
vtexws lib vtex_ws_web templates layout app.html.eex
Raw

lib/vtex_ws_web/templates/layout/app.html.eex

<!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>VtexWs · Phoenix Framework</title>
<link rel="stylesheet" href="<%= Routes.static_path(@conn, "/css/app.css") %>"/>
</head>
<body style="margin: 0">
<header style="background-color: #343a40">
<section class="container">
<nav role="navigation">
<ul>
<li><a href="/apps">Apps</a></li>
</ul>
</nav>
<a href="/" class="phx-logo">
<img src="https://www.todocartoes.com.br/assets/todo-logo-bw-ffe49c67e8ddef9ed312110c10e51283bcb82287634fda4552953085baee6abc.png" alt="Phoenix Framework Logo"/>
</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>
<%= render @view_module, @view_template, assigns %>
</main>
<script type="text/javascript" src="<%= Routes.static_path(@conn, "/js/app.js") %>"></script>
</body>
</html>