2016-09-24 11:47:51 +00:00
|
|
|
- content_for :header_tags do
|
2017-11-17 05:35:25 +00:00
|
|
|
- if theme_data['preload']
|
|
|
|
- theme_data['preload'].each do |link|
|
|
|
|
%link{ href: asset_pack_path("#{link}.js"), crossorigin: 'anonymous', rel: 'preload', as: 'script' }/
|
2017-07-13 20:15:32 +00:00
|
|
|
%meta{name: 'applicationServerKey', content: Rails.configuration.x.vapid_public_key}
|
2017-07-08 12:51:05 +00:00
|
|
|
%script#initial-state{ type: 'application/json' }!= json_escape(@initial_state_json)
|
2017-01-09 11:37:15 +00:00
|
|
|
|
2017-09-26 02:24:32 +00:00
|
|
|
= javascript_pack_tag "themes/#{current_theme}", integrity: true, crossorigin: 'anonymous'
|
|
|
|
= stylesheet_pack_tag "themes/#{current_theme}", integrity: true, media: 'all'
|
2016-09-24 11:47:51 +00:00
|
|
|
|
2017-05-08 01:35:25 +00:00
|
|
|
.app-holder#mastodon{ data: { props: Oj.dump(default_props) } }
|
2017-06-07 22:52:56 +00:00
|
|
|
%noscript
|
2017-07-23 18:28:06 +00:00
|
|
|
= image_tag asset_pack_path('logo.svg'), alt: 'Mastodon'
|
|
|
|
|
2017-06-07 22:52:56 +00:00
|
|
|
%div
|
2017-09-01 23:52:28 +00:00
|
|
|
= t('errors.noscript_html')
|