mirror of
https://github.com/oonyeje/Pearlception_Website_RoR.git
synced 2025-12-25 11:47:41 +00:00
Conflicts: Pearlception/app/views/layouts/application.html.erb Pearlception/config/routes.rb
23 lines
598 B
Plaintext
23 lines
598 B
Plaintext
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Pearlception</title>
|
|
<%= csrf_meta_tags %>
|
|
<%= javascript_include_tag "application", "data-turbolinks-track" => false %>
|
|
<%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload' %>
|
|
<%= javascript_include_tag 'application', 'data-turbolinks-track': 'reload' %>
|
|
<%= yield %>
|
|
</head>
|
|
|
|
<body>
|
|
<% if notice %>
|
|
<p class="alert alert-success"><%= notice %></p>
|
|
<% end %>
|
|
<% if alert %>
|
|
<p class="alert alert-danger"><%= alert %></p>
|
|
<% end %>
|
|
<%= yield %>
|
|
</body>
|
|
|
|
</html>
|