20 lines
693 B
Plaintext
20 lines
693 B
Plaintext
<!DOCTYPE html>
|
|
<html ang="en">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<meta http-equiv="x-ua-compatible" content="ie=edge">
|
|
<title><%= content_for?(:title) ? yield(:title) : "Nemo Encoder" %></title>
|
|
<%= csrf_meta_tags %>
|
|
<%= stylesheet_link_tag 'application', media: 'all' %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-eval' => true %>
|
|
<link href="/assets/style.css" rel="stylesheet" type="text/css" />
|
|
</head>
|
|
<body>
|
|
<%= render "layouts/navigation" %>
|
|
<div style="margin-top: 80px;"></div>
|
|
<div class="container">
|
|
<%= yield %>
|
|
</div>
|
|
</body>
|
|
</html> |