Sha256: faec58fd41e27537c58ae48bf026133fb91fc6d137a6693bfc62c51837f6ad66
Contents?: true
Size: 1.89 KB
Versions: 11
Compression:
Stored size: 1.89 KB
Contents
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" lang="en"> <head> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <title><%= yield :title %></title> <%= stylesheet_link_tag "frontpage", :media => "screen, projection" %> <%= javascript_include_tag 'jquery', 'jquery.livequery' %> <script type="text/javascript" charset="utf-8"> $(document).ready(function() { <%= yield :javascript%> }); </script> <%= yield :headers %> </head> <body> <div id="site"> <%= render :partial => "header" %> <div id="home"> <div id="header"> <div class="banner_busqueda"> <div id="espacio_busqueda"> <% flash.each do |name, msg| %> <div class="<%= name %>"> <%= msg %> </div> <% end %> </div> <div class="div_busqueda"> <div id="subtexto_busqueda"> <%=link_to t("browse"), groups_path,:class => "show_all_link" %> </div> <%= yield :search %> </div> <br class="clearfloat" /> </div> </div> <div id="content"> <%= yield %> </div> </div> <div id="sponsor-wrapper"> <%= render :partial => "sponsor" %> </div> <div id="footer-wrapper"> <%= render :partial => "layouts/footer" %> </div> </div> </body> </html>
Version data entries
11 entries across 11 versions & 1 rubygems