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

13 lines
383 B
Plaintext
Raw Normal View History

!!! 5
2016-02-22 16:00:20 +01:00
%html
%head
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
%title
= "#{yield(:page_title)} - " if content_for?(:page_title)
Mastodon
2016-02-22 16:00:20 +01:00
= stylesheet_link_tag 'application', media: 'all'
= csrf_meta_tags
= yield :header_tags
%body{ class: @body_classes }
= content_for?(:content) ? yield(:content) : yield