mirror of https://github.com/markbates/pkger.git
22 lines
580 B
HTML
22 lines
580 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta charset="utf-8">
|
|
<title>Buffalo - Coke</title>
|
|
<%= stylesheetTag("application.css") %>
|
|
<meta name="csrf-param" content="authenticity_token" />
|
|
<meta name="csrf-token" content="<%= authenticity_token %>" />
|
|
<link rel="icon" href="<%= assetPath("images/favicon.ico") %>">
|
|
</head>
|
|
<body>
|
|
|
|
<div class="container">
|
|
<%= partial("flash.html") %>
|
|
<%= yield %>
|
|
</div>
|
|
|
|
<%= javascriptTag("application.js") %>
|
|
</body>
|
|
</html>
|