Site para o estudio Velvet Design em São Paulo. http://velvetdesign.com.br

admin.html.erb 2.4KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. <!DOCTYPE html>
  2. <html lang="en">
  3. <head>
  4. <meta charset="utf-8">
  5. <meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1">
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0">
  7. <title><%= content_for?(:title) ? yield(:title) : "Admin - " + @config.website_name %></title>
  8. <%= csrf_meta_tags %>
  9. <!-- Le HTML5 shim, for IE6-8 support of HTML elements -->
  10. <!--[if lt IE 9]>
  11. <script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.6.1/html5shiv.js" type="text/javascript"></script>
  12. <![endif]-->
  13. <%= stylesheet_link_tag "application", :media => "all" %>
  14. <!-- For third-generation iPad with high-resolution Retina display: -->
  15. <!-- Size should be 144 x 144 pixels -->
  16. <%= favicon_link_tag 'apple-touch-icon-144x144-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '144x144' %>
  17. <!-- For iPhone with high-resolution Retina display: -->
  18. <!-- Size should be 114 x 114 pixels -->
  19. <%= favicon_link_tag 'apple-touch-icon-114x114-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '114x114' %>
  20. <!-- For first- and second-generation iPad: -->
  21. <!-- Size should be 72 x 72 pixels -->
  22. <%= favicon_link_tag 'apple-touch-icon-72x72-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png', :sizes => '72x72' %>
  23. <!-- For non-Retina iPhone, iPod Touch, and Android 2.1+ devices: -->
  24. <!-- Size should be 57 x 57 pixels -->
  25. <%= favicon_link_tag 'apple-touch-icon-precomposed.png', :rel => 'apple-touch-icon-precomposed', :type => 'image/png' %>
  26. <!-- For all other devices -->
  27. <!-- Size should be 32 x 32 pixels -->
  28. <%= favicon_link_tag 'favicon.ico', :rel => 'shortcut icon' %>
  29. <%= javascript_include_tag "application" %>
  30. </head>
  31. <body>
  32. <div class="navbar navbar-fixed-top">
  33. <div class="navbar-inner">
  34. <div class="container">
  35. <a class="btn btn-navbar" data-target=".nav-collapse" data-toggle="collapse">
  36. <span class="icon-bar"></span>
  37. <span class="icon-bar"></span>
  38. <span class="icon-bar"></span>
  39. </a>
  40. <%= render 'layouts/logo' %>
  41. <%= render 'layouts/navigation_links' %>
  42. </div>
  43. </div>
  44. </div>
  45. <div class="container top-container ">
  46. <%= yield %>
  47. <%= render 'layouts/footer' %>
  48. </div> <!-- /container -->
  49. </body>
  50. </html>