You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.7 KiB
43 lines
1.7 KiB
!!!
|
|
%html{ lang: I18n.locale.to_s }
|
|
%head
|
|
%meta{ charset: 'utf-8' }
|
|
%meta{ name: 'viewport', content: 'width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0' }
|
|
-#%title= (yield :title) + (content_for?(:title) ? (_!' | ') : '') + (_!'Bike!Bike!')
|
|
%title=_!('Bike!Bike!' + (content_for?(:title) ? " - #{yield :title}" : ''))
|
|
%meta{ name: 'description', content: (yield_or_default :description, I18n.t('page_descriptions.home')) }
|
|
= csrf_meta_tags
|
|
= stylesheets
|
|
%link{ href: asset_path('favicon.ico'), rel: 'shortcut icon', type: 'image/x-icon' }
|
|
%link{ href: asset_path('favicon.ico'), rel: 'icon', type: 'image/x-icon' }
|
|
-#%link{ href: asset_path('apple-touch-icon.png'), rel: 'apple-touch-icon' }
|
|
-#%link{ href: asset_path('apple-touch-icon-72x72.png'), rel: 'apple-touch-icon', sizes: '72x72' }
|
|
-#%link{ href: asset_path('apple-touch-icon-114x114.png'), rel: 'apple-touch-icon', sizes: '114x114' }
|
|
-#%link{ href: asset_path('apple-touch-icon-144x144.png'), rel: 'apple-touch-icon', sizes: '144x144' }
|
|
= yield :head
|
|
|
|
%body{ class: page_style }
|
|
= render 'shared/navbar'
|
|
%main#main
|
|
- if content_for?(:side_bar)
|
|
%nav#side-bar
|
|
= yield :side_bar
|
|
-# - flash.each do |key, msg|
|
|
-# = content_tag :div, msg, :id => key
|
|
%header#banner=yield :banner
|
|
- if @submenu
|
|
=row do
|
|
= columns(medium: 12) do
|
|
%nav.sub-menu
|
|
- @submenu.each do |href,key|
|
|
%a{href: href, class: request.fullpath.start_with?(href) ? 'current' : nil}=_"menu.submenu.#{key}"
|
|
- if has_content?
|
|
#content=yield
|
|
- else
|
|
= yield
|
|
#footer
|
|
%footer= render 'shared/footer'
|
|
|
|
= yield :footer_scripts if content_for?(:footer_scripts)
|
|
- add_inline_script :main
|
|
= inline_scripts
|
|
|