2016-02-28 08:41:01 -05:00
|
|
|
!!! 5
|
2016-02-22 10:00:20 -05:00
|
|
|
%html
|
|
|
|
%head
|
2016-09-29 18:00:45 -04:00
|
|
|
%meta{:content => 'text/html; charset=UTF-8', 'http-equiv' => 'Content-Type'}/
|
|
|
|
%meta{:charset => 'utf-8'}/
|
|
|
|
%meta{:name => 'viewport', :content => 'width=device-width, initial-scale=1'}/
|
|
|
|
%meta{'http-equiv' => 'X-UA-Compatible', :content => 'IE=edge'}/
|
|
|
|
|
2016-03-19 07:49:34 -04:00
|
|
|
%title
|
|
|
|
= "#{yield(:page_title)} - " if content_for?(:page_title)
|
|
|
|
Mastodon
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2016-02-22 10:00:20 -05:00
|
|
|
= stylesheet_link_tag 'application', media: 'all'
|
|
|
|
= csrf_meta_tags
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2016-02-28 08:41:01 -05:00
|
|
|
= yield :header_tags
|
2016-09-29 18:00:45 -04:00
|
|
|
|
2016-08-24 11:56:44 -04:00
|
|
|
%body{ class: @body_classes }
|
2016-03-12 10:09:46 -05:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|