Sha256: a5845016bcb9f6909b7c439fa439cd1a3c7641916f531fae76b963d3606a7547
Contents?: true
Size: 834 Bytes
Versions: 6
Compression:
Stored size: 834 Bytes
Contents
<!DOCTYPE html> <html> <head> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title><%= content_for?(:title) ? yield(:title) : "My Application" %></title> <meta name="description" content="<%= content_for?(:description) ? yield(:description) : "My Application" %>"> <%= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true %> <%= javascript_include_tag 'application', 'data-turbolinks-track' => true %> <%= csrf_meta_tags %> <!-- Custom Fonts --> <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css"> </head> <body> <header> <%= render 'layouts/navigation' %> </header> <%= render 'layouts/messages' %> <%= yield %> <%= render 'layouts/footer' %> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems