Sha256: 2533275dd306c0886c5e85d0ae33bfb0859c0442d5b13624447f0f46a0651877
Contents?: true
Size: 983 Bytes
Versions: 6
Compression:
Stored size: 983 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"> <link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,300italic,400italic,700italic" rel="stylesheet" type="text/css"> </head> <body> <header> <%= render 'layouts/navigation' unless current_page?(root_path) %> </header> <%= render 'layouts/messages' %> <%= yield %> </body> </html>
Version data entries
6 entries across 6 versions & 1 rubygems