This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-28 05:41:01 -08:00
|
|
|
!!! 5
|
2016-02-22 07:00:20 -08:00
|
|
|
%html
|
|
|
|
%head
|
|
|
|
%meta{:content => "text/html; charset=UTF-8", "http-equiv" => "Content-Type"}/
|
2016-03-19 04:49:34 -07:00
|
|
|
%title
|
|
|
|
= "#{yield(:page_title)} - " if content_for?(:page_title)
|
|
|
|
Mastodon
|
2016-02-22 07:00:20 -08:00
|
|
|
= stylesheet_link_tag 'application', media: 'all'
|
|
|
|
= csrf_meta_tags
|
2016-02-28 05:41:01 -08:00
|
|
|
= yield :header_tags
|
2016-08-24 08:56:44 -07:00
|
|
|
%body{ class: @body_classes }
|
2016-03-12 07:09:46 -08:00
|
|
|
= content_for?(:content) ? yield(:content) : yield
|