mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-15 01:11:41 +00:00
25 lines
943 B
Text
25 lines
943 B
Text
!!!
|
|
%html{ lang: I18n.locale, dir: t('dir') }
|
|
%head
|
|
%meta{ charset: 'UTF-8' }/
|
|
%meta{ content: 'text/html; charset=UTF-8',
|
|
'http-equiv': 'Content-Type' }/
|
|
%meta{ name: 'color-scheme', content: 'light dark' }/
|
|
%meta{ name: 'viewport',
|
|
content: 'width=device-width, initial-scale=1.0' }/
|
|
%meta{ name: 'referrer', content: 'same-origin' }/
|
|
|
|
%title Sutty
|
|
|
|
%script{ type: 'text/javascript', src: '/env.js' }
|
|
= csrf_meta_tags
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload'
|
|
= javascript_pack_tag 'application', 'data-turbolinks-track': 'reload'
|
|
= stylesheet_pack_tag 'application', 'data-turbolinks-track': 'reload'
|
|
= favicon_link_tag 'sutty_cuadrada.png', rel: 'apple-touch-icon', type: 'image/png'
|
|
|
|
%body{ class: yield(:body) }
|
|
.container-fluid#sutty
|
|
= yield
|
|
- if flash[:js]
|
|
.js-flash.d-none{ data: flash[:js] }
|