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.
56 lines
2.6 KiB
56 lines
2.6 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!'
|
|
%meta{ name: 'description', content: (yield_or_default :description, 'Bike!Bike! conferences for DIY bicycle collectives, co-ops, and advocacy groups') }
|
|
= csrf_meta_tags
|
|
= yield :head
|
|
/[if lt IE 9]
|
|
<script src="http://html5shim.googlecode.com/svn/trunk/html5.js" type="text/javascript"></script>
|
|
|
|
= stylesheet_link_tag '//fonts.googleapis.com/css?family=Source+Sans+Pro:400,700,400italic,700italic', 'application', media: 'all'
|
|
|
|
%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' }
|
|
|
|
=# javascript_include_tag '//use.typekit.net/iqv7hcg.js'
|
|
=# javascript_include_tag 'application'
|
|
=# javascript_include_tag 'nested_form'
|
|
|
|
%body{ class: (yield_or_default :page_style) }
|
|
:javascript
|
|
document.getElementsByTagName('HTML')[0].className+=' '+(window.getComputedStyle(document.body).backgroundBlendMode?'':'no-')+'blend-modes'
|
|
-#= render 'shared/translation_control'
|
|
|
|
%main
|
|
= render 'shared/navbar'
|
|
- flash.each do |key, msg|
|
|
= content_tag :div, msg, :id => key
|
|
- if has_banner?
|
|
%header#banner{banner_attrs(yield_or_default :banner_image)}
|
|
= yield :banner
|
|
= banner_attribution
|
|
- if content_for?(:side_bar)
|
|
%aside#side-bar
|
|
= yield :side_bar
|
|
- if has_content?
|
|
#content=yield
|
|
- else
|
|
= yield
|
|
%footer
|
|
#footer
|
|
.container= render 'shared/footer'
|
|
= javascript_include_tag '//ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js'
|
|
:javascript
|
|
#{yield :scripts}
|
|
!function(a,b,c,d){d&&a.addEventListener("DOMContentLoaded",function(){$.ajax({url:$("use").first().attr("xlink:href").replace(/^(.*)\#.*$/,"$1"),dataType:"text",success:function(a){$("body").append('<div class="hide">'+a+"</div>"),$("use").each(function(){$(this).attr("xlink:href",function(a,b){return b.replace(/^.*(#.*)$/,"$1")})})}})})}(document,navigator,{},/Trident\/[567]\b/.test(navigator.userAgent));
|
|
$(function(){
|
|
#{yield :dom_ready}
|
|
});
|
|
= yield :footer_scripts
|
|
|