allpro/app/views/layouts/application.html.erb

19 lines
438 B
Text

<!DOCTYPE html>
<html>
<head>
<title>Allpro</title>
<%= stylesheet_link_tag "application", media: "all", "data-turbolinks-track" => true %>
<%= javascript_include_tag "application", "data-turbolinks-track" => true %>
<%= csrf_meta_tags %>
</head>
<body>
<%= link_to 'Workouts', workouts_path %><br/><br/>
<% if flash[:notice] %>
<p class="notice"><%= flash[:notice] %></p>
<% end %>
<%= yield %>
</body>
</html>