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