Sha256: 9cc47fa37281fd3ef1878ca7c09d32da5bbd629762245b1dde5d7157134a6907

Contents?: true

Size: 999 Bytes

Versions: 1

Compression:

Stored size: 999 Bytes

Contents

<!DOCTYPE html>
<html lang="en">
  <head>
    <title><%%= content_for?(:title) ? yield(:title) : "Untitled" %></title>
    <%%= stylesheet_link_tag "application" %>
    <%%= javascript_include_tag "application" %>
    <%%= csrf_meta_tag %>
    <%%= yield(:head) %>
  </head>
  <body class="with-header">
    <div class="topbar">
      <div class="fill">
        <div class="container">
          <%%= link_to app_name, '#', :class => "brand" %>
          <ul class="nav">
          	<li class="active">
          		<a href='#'>Home</a>
          	</li>
          	<li>
          		<a href='#'>About</a>
          	</li>
          </ul>
        <p class="pull-right"><%%= text_field '#', '#'%></p>
        </div>
      </div>
    </div>
    <%%= display_flash_message %>
    <div class="container">
      <%%= content_tag :h1, yield(:title) if show_title %>
      <%%= yield %>
      <footer>
         <p><%%= app_name %> &copy;  <%= Time.now.year %></p>
      </footer>
    </div>
  </body>
</html>

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
bootstrapped-0.0.6 lib/generators/bootstrapped/layout/templates/layout.html.erb