Sha256: ef1b8bdcbaf14fa5fef8d6b8b450bc58ebb8e3fe80bb8b482d111787ec95dd16
Contents?: true
Size: 611 Bytes
Versions: 12
Compression:
Stored size: 611 Bytes
Contents
<!doctype html> <html> <head> <meta charset="utf-8"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>Detour</title> <%= stylesheet_link_tag "detour/application", :media => "all" %> <%= javascript_include_tag "detour/application" %> <%= csrf_meta_tags %> </head> <body> <%= render "detour/shared/nav" %> <div class="container"> <% if flash.notice %> <div class="alert alert-success"><%= flash.notice %></div> <% end %> <% if flash.alert %> <div class="alert alert-danger"><%= flash.alert %></div> <% end %> <%= yield %> </div> </body> </html>
Version data entries
12 entries across 12 versions & 1 rubygems