mastodon/app/views/layouts/application.html.haml

19 lines
503 B
Plaintext
Raw Normal View History

!!! 5
%html{:lang => 'en'}
2016-02-22 16:00:20 +01:00
%head
2016-09-30 00:00:45 +02:00
%meta{:charset => 'utf-8'}/
%meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'}/
%meta{'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge'}/
%title
= "#{yield(:page_title)} - " if content_for?(:page_title)
Mastodon
2016-09-30 00:00:45 +02:00
2016-02-22 16:00:20 +01:00
= stylesheet_link_tag 'application', media: 'all'
= csrf_meta_tags
2016-09-30 00:00:45 +02:00
= yield :header_tags
2016-09-30 00:00:45 +02:00
%body{ class: @body_classes }
= content_for?(:content) ? yield(:content) : yield