Sha256: 0aec36fe8f8d1a28ee4ca6119002e93f0c0f06bde5cdfa887175211f35f92d18
Contents?: true
Size: 972 Bytes
Versions: 6
Compression:
Stored size: 972 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=Lato: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