Sha256: 329bf7f12776e08fae4ab6c576c6acd9e01a25e56cd92be5fb15572d6e42b6b6

Contents?: true

Size: 1.25 KB

Versions: 9

Compression:

Stored size: 1.25 KB

Contents

<!-- HTML5 DOCTYPE -->
<!DOCTYPE html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <title><%= yield(:title).empty? ? t('socialstream') : yield(:title)%></title>
    <meta name="keywords" content="<%= yield(:keywords).empty? ? t('profile.tags.default') : yield(:keywords) %>" >
    <meta name="description" content= "<%= yield(:description).empty? ? "Home" : yield(:description) %>" >
    <%= stylesheet_link_tag "application" %>
    <%= favicon_link_tag "icons/favicon.ico" %>

    <% if protect_against_forgery? %>
      <%= csrf_meta_tag %>
    <% end %>
    <script type="text/javascript" >
    $(document).ready(function() {
      <%= yield :javascript%>
    });
    </script>
    <%= yield :headers %>
  </head>
  <body>
    <div id="wrapper">
      <header>
        <%= render :partial => "frontpage/header" %>
      </header>
      <section>
        <div id="wrapper_body">
          <div class="space_center"></div>
          <div id="flash">
            <%= render :partial => "layouts/flash", :locals => {:flash => flash} %>
          </div>
          <%= yield %>
        </div>
        <%= render :partial => "frontpage/sponsor" %>
      </section>
      <footer>
        <%= render :partial => "layouts/footer" %>
      </footer>
    </div>
  </body>
</html>

Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
social_stream-base-0.9.3 app/views/layouts/frontpage.html.erb
social_stream-base-0.9.2 app/views/layouts/frontpage.html.erb
social_stream-base-0.9.1 app/views/layouts/frontpage.html.erb
social_stream-base-0.9.0 app/views/layouts/frontpage.html.erb
social_stream-base-0.8.2 app/views/layouts/frontpage.html.erb
social_stream-base-0.8.1 app/views/layouts/frontpage.html.erb
social_stream-base-0.8.0 app/views/layouts/frontpage.html.erb
social_stream-base-0.7.11 app/views/layouts/frontpage.html.erb
social_stream-base-0.7.10 app/views/layouts/frontpage.html.erb