2014-08-01 11:47:25 +02:00
|
|
|
!!! 5
|
|
|
|
%html
|
|
|
|
%head
|
2014-11-13 19:37:11 +01:00
|
|
|
%meta{charset: 'utf-8'}
|
|
|
|
%meta{'http-equiv' => 'X-UA-Compatible' ,content: 'IE=edge'}
|
2014-11-30 16:41:18 +01:00
|
|
|
%meta{name: 'viewport', content: 'width=device-width, initial-scale=1, user-scalable=no'}
|
|
|
|
%meta{name: 'theme-color', content: '#0C84E4'}
|
|
|
|
%meta{name: "apple-mobile-web-app-capable", content: "yes"}
|
2014-12-06 17:08:10 +01:00
|
|
|
%meta{name: 'apple-mobile-web-app-status-bar-style', content: 'black-translucent'}
|
2014-11-03 13:03:24 +01:00
|
|
|
%title= APP_CONFIG['site_name']
|
2014-08-01 11:47:25 +02:00
|
|
|
= stylesheet_link_tag 'application', media: 'all', 'data-turbolinks-track' => true
|
|
|
|
= javascript_include_tag 'application', 'data-turbolinks-track' => true
|
|
|
|
= csrf_meta_tags
|
|
|
|
%body
|
2014-08-01 15:27:08 +02:00
|
|
|
= render 'layouts/header'
|
|
|
|
= yield
|
|
|
|
- if Rails.env.development?
|
|
|
|
%hr
|
2014-08-01 11:55:50 +02:00
|
|
|
.container
|
2014-11-03 13:05:03 +01:00
|
|
|
%p.text-danger Debug params:
|
2014-11-03 13:03:24 +01:00
|
|
|
= debug params
|