Last active
August 29, 2015 14:22
-
-
Save darui00kara/ddb9ee675722538d4dd7 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 Phoenix!</title> | |
<link rel="stylesheet" href="<%= static_path(@conn, "/css/app.css") %>"> | |
</head> | |
<body> | |
<div class="container" role="main"> | |
<div class="header"> | |
<ul class="nav nav-pills pull-right"> | |
<li><a href="http://www.phoenixframework.org/docs">Get Started</a></li> | |
</ul> | |
<span class="logo"></span> | |
</div> | |
<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 %> | |
</div> | |
<!-- /container --> | |
<!-- Begin page content --> | |
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script> | |
<script src="<%= static_path(@conn, "/js/app.js") %>"></script> | |
<script>require("web/static/js/app")</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment