The code powering m.abunchtell.com https://m.abunchtell.com
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

29 lines
926 B

  1. !!! 5
  2. %html{:lang => 'en'}
  3. %head
  4. %meta{:charset => 'utf-8'}/
  5. %meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'}/
  6. %meta{'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge'}/
  7. %link{:rel => "apple-touch-icon", :sizes => "180x180", :href => "/apple-touch-icon.png"}/
  8. %link{:rel => "manifest", :href => "/manifest.json"}/
  9. %meta{:name => "msapplication-config", :content => "/browserconfig.xml"}/
  10. %meta{:name => "theme-color", :content => "#282c37"}/
  11. %meta{:name => "apple-mobile-web-app-capable", :content => "yes"}/
  12. %title<
  13. - if content_for?(:page_title)
  14. = yield(:page_title)
  15. = ' - '
  16. = Setting.site_title
  17. = stylesheet_link_tag 'application', media: 'all'
  18. = csrf_meta_tags
  19. = yield :header_tags
  20. - body_classes ||= @body_classes
  21. %body{ class: body_classes }
  22. = content_for?(:content) ? yield(:content) : yield