2014-08-01 02:47:25 -07:00
|
|
|
!!! 5
|
2015-01-07 07:02:02 -08:00
|
|
|
%html{lang: 'en'}
|
2014-08-01 02:47:25 -07:00
|
|
|
%head
|
2014-11-13 10:37:11 -08:00
|
|
|
%meta{charset: 'utf-8'}
|
|
|
|
%meta{'http-equiv' => 'X-UA-Compatible' ,content: 'IE=edge'}
|
2014-11-30 07:41:18 -08:00
|
|
|
%meta{name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no'}
|
2015-01-13 13:57:50 -08:00
|
|
|
%meta{name: 'theme-color', content: '#5e35b1'}
|
2015-01-10 04:50:08 -08:00
|
|
|
%link{rel: 'apple-touch-icon', href: '/apple-touch-icon-precomposed.png'}
|
2015-01-10 04:43:02 -08:00
|
|
|
%link{rel: 'icon', href: '/images/favicon/favicon-16.png', sizes: '16x16'}
|
2015-01-10 04:56:39 -08:00
|
|
|
%link{rel: 'icon', href: '/icon-152.png', sizes: '152x152'}
|
2015-01-10 04:43:02 -08:00
|
|
|
%link{rel: 'icon', href: '/images/favicon/favicon-32.png', sizes: '32x32'}
|
2015-05-10 10:48:47 -07:00
|
|
|
%title= yield(:title)
|
2015-06-08 12:51:46 -07:00
|
|
|
= javascript_include_tag 'i18n', 'data-turbolinks-track' => true
|
2014-08-01 02:47:25 -07:00
|
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
2020-05-04 17:03:49 -07:00
|
|
|
= render_theme
|
2014-08-01 02:47:25 -07:00
|
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
2015-02-03 08:31:04 -08:00
|
|
|
- if user_signed_in?
|
|
|
|
- if current_user.mod?
|
|
|
|
= javascript_include_tag 'moderation', 'data-turbolinks-track' => true
|
2014-08-01 02:47:25 -07:00
|
|
|
= csrf_meta_tags
|
2015-07-24 10:12:14 -07:00
|
|
|
%body#version1
|
2020-04-26 05:29:23 -07:00
|
|
|
- if user_signed_in?
|
|
|
|
= render 'navigation/main'
|
|
|
|
- else
|
|
|
|
= render 'navigation/guest'
|
2020-04-19 13:38:21 -07:00
|
|
|
= render 'shared/announcements'
|
2014-08-01 06:27:08 -07:00
|
|
|
= yield
|
2015-06-21 00:03:29 -07:00
|
|
|
= render 'shared/locales'
|
2014-08-01 06:27:08 -07:00
|
|
|
- if Rails.env.development?
|
2015-07-24 10:12:14 -07:00
|
|
|
#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:
|
2020-04-25 08:03:59 -07:00
|
|
|
= debug params
|