Sha256: 14ad08bb50fd262e27a8692b7b64b8dbf2a8a21d7a54ced6a59034bbbeb17e75
Contents?: true
Size: 529 Bytes
Versions: 189
Compression:
Stored size: 529 Bytes
Contents
<!DOCTYPE html> <html> <head> <title>Caboose</title> <%= yield :css %> <%= csrf_meta_tags %> </head> <body> <div id='wrapper'> <div id='header'> <%= render :partial => 'layouts/caboose/top_nav' %> </div> <div id='content_wrapper'> <div id='content'> <% if (yield && yield.strip.length > 0) %> <%= yield %> <% elsif (!@page.nil?) %> <h1><%= @page.title %></h1> <%= raw @page.content %> <% end %> </div> </div> </div> <%= render :partial => 'layouts/caboose/station' %> <%= yield :js %> </body> </html>
Version data entries
189 entries across 189 versions & 1 rubygems