46 lines
2.1 KiB
Plaintext
46 lines
2.1 KiB
Plaintext
!!! 5
|
|
%html{lang: 'en'}
|
|
%head
|
|
%meta{charset: 'utf-8'}
|
|
%meta{'http-equiv' => 'X-UA-Compatible' ,content: 'IE=edge'}
|
|
%meta{name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no'}
|
|
%meta{name: 'theme-color', content: '#5e35b1'}
|
|
%link{rel: 'apple-touch-icon', href: '/apple-touch-icon-precomposed.png'}
|
|
%link{rel: 'icon', href: '/images/favicon/favicon-16.png', sizes: '16x16'}
|
|
%link{rel: 'icon', href: '/icon-152.png', sizes: '152x152'}
|
|
%link{rel: 'icon', href: '/images/favicon/favicon-32.png', sizes: '32x32'}
|
|
%title= yield(:title)
|
|
= javascript_include_tag 'i18n', 'data-turbolinks-track' => true
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
|
- if user_signed_in? and not current_user.theme.nil? and (@user.nil? || @user.theme.nil?)
|
|
%link{rel: 'stylesheet', href: current_user.theme.css.url, media: :all, 'data-turbolinks-track' => "false"}
|
|
%meta{name: 'theme-color', content: current_user.theme.theme_color}
|
|
- if (not @user.nil?) and (not @user.theme.nil?) and (if user_signed_in? then current_user.show_foreign_themes? else true end)
|
|
%link{rel: 'stylesheet', href: @user.theme.css.url, media: :all, 'data-turbolinks-track' => "false"}
|
|
%meta{name: 'theme-color', content: @user.theme.theme_color}
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
- if user_signed_in?
|
|
- if current_user.mod?
|
|
= javascript_include_tag 'moderation', 'data-turbolinks-track' => true
|
|
= csrf_meta_tags
|
|
%body#version1
|
|
= render 'layouts/header'
|
|
= yield
|
|
= render 'shared/locales'
|
|
- if Rails.env.development?
|
|
#debug
|
|
%hr
|
|
.container
|
|
%p
|
|
Current branch:
|
|
%code= `git rev-parse --abbrev-ref HEAD`
|
|
(commit
|
|
= succeed ')' do
|
|
= `git rev-parse --short HEAD`.strip
|
|
%p.text-danger Debug params:
|
|
= debug params
|
|
- if Rails.env.production?
|
|
%noscript
|
|
%p
|
|
%img{:alt => "", :src => "//stat.rrerr.net/piwik.php?idsite=9", :style => "border:0;"}/
|