mirror of
https://0xacab.org/sutty/sutty
synced 2024-11-25 02:46:23 +00:00
14 lines
666 B
Text
14 lines
666 B
Text
!!!
|
|
%html
|
|
%head
|
|
%meta{content: "text/html; charset=UTF-8", 'http-equiv': "Content-Type"}/
|
|
%title Sutty
|
|
= csrf_meta_tags
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track': 'reload'
|
|
= javascript_include_tag 'application', 'data-turbolinks-track': 'reload'
|
|
- if @site.try(:config).try(:dig, 'css')
|
|
%link{rel: 'stylesheet', type: 'text/css', href: @site.get_url_from_site(@site.config.dig('css'))}
|
|
- style = "background-image: url(#{@site.try(:cover) || image_url('background.jpg')})"
|
|
%body{class: @has_cover ? 'background-cover' : '', style: @has_cover ? style : ''}
|
|
#sutty.container-fluid
|
|
= yield
|