Created
March 12, 2017 21:46
-
-
Save awestbro/0339ff691dc077664d64c856e9c64630 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!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=""> | |
<title>Hello Myproject!</title> | |
<!-- <link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>"> --> | |
</head> | |
<body> | |
<div class="container"> | |
<header class="header"> | |
<nav role="navigation"> | |
<ul class="nav nav-pills pull-right"> | |
<li><a href="http://www.phoenixframework.org/docs">Get Started</a></li> | |
</ul> | |
</nav> | |
<span class="logo"></span> | |
</header> | |
<p class="alert alert-info" role="alert"><%= get_flash(@conn, :info) %></p> | |
<p class="alert alert-danger" role="alert"><%= get_flash(@conn, :error) %></p> | |
<main role="main"> | |
<%= render @view_module, @view_template, assigns %> | |
</main> | |
</div> <!-- /container --> | |
<script src="<%= static_path(@conn, "/dist/app.js") %>"></script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment