2016-02-28 13:41:01 +00:00
|
|
|
!!! 5
|
2016-02-22 15:00:20 +00:00
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
|
|
|
%title Mastodon
|
|
|
|
= stylesheet_link_tag 'application', media: 'all'
|
|
|
|
= javascript_include_tag 'application'
|
|
|
|
= csrf_meta_tags
|
2016-02-28 13:41:01 +00:00
|
|
|
= yield :header_tags
|
2016-02-22 15:00:20 +00:00
|
|
|
%body
|
2016-03-12 15:09:46 +00:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|