* landing page wip
This commit is contained in:
parent
4c85740597
commit
1688bdb5cf
|
|
@ -49,13 +49,13 @@
|
|||
function initialize(fbAppID) {
|
||||
loginStatusDeferred = $.Deferred();
|
||||
var fbAppID_ = fbAppID;
|
||||
window.fbAsyncInit = function() {
|
||||
window.fbAsyncInit = function() {
|
||||
FB.init({
|
||||
appId : fbAppID_,
|
||||
// channelUrl : '//WWW.YOUR_DOMAIN.COM/channel.html',
|
||||
status : true, // check the login status upon init?
|
||||
cookie : true, // set sessions cookies to allow server to access the session?
|
||||
xfbml : false, // parse XFBML tags on this page?
|
||||
xfbml : true, // parse XFBML tags on this page?
|
||||
oauth : true // enable OAuth 2.0
|
||||
});
|
||||
|
||||
|
|
|
|||
|
|
@ -9,6 +9,13 @@ body.web.landing_page {
|
|||
display:none;
|
||||
}
|
||||
|
||||
&.wb_2 {
|
||||
.landing-content {
|
||||
h1 {
|
||||
margin-left:120px;
|
||||
}
|
||||
}
|
||||
}
|
||||
.landing-content {
|
||||
|
||||
h1 {
|
||||
|
|
|
|||
|
|
@ -12,11 +12,14 @@ class LandingsController < ApplicationController
|
|||
@promo_latest, start = Feed.index(nil, limit: 10)
|
||||
end
|
||||
|
||||
page = params['p']
|
||||
page = 0 unless p
|
||||
page = params['p'].to_i
|
||||
|
||||
if page == 0
|
||||
render 'watch_bands', layout: 'web'
|
||||
if page == 2
|
||||
render 'watch_bands_2', layout: 'web'
|
||||
elsif page == 3
|
||||
render 'watch_bands_3', layout: 'web'
|
||||
else
|
||||
render 'watch_bands_1', layout: 'web'
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
- provide(:page_name, 'landing_page')
|
||||
- provide(:page_name, 'landing_page wb_1')
|
||||
|
||||
.column
|
||||
h1 Watch 6 Bands Play Together from Different Locations
|
||||
|
|
@ -12,6 +12,6 @@
|
|||
= render :partial => "users/buzz", locals: {header: 'From Our Community'}
|
||||
.more-container
|
||||
h2 Need to Know More?
|
||||
= link_to 'Watch a Video to See How JamKazam Works', landing_wb_path, class: 'landing_wb'
|
||||
= link_to 'Watch a Video to See How JamKazam Works', landing_wb_path(p: 2), class: 'landing_wb'
|
||||
|
||||
br clear="all"
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
- provide(:page_name, 'landing_page wb_2')
|
||||
|
||||
.column
|
||||
h1 See How JamKazam Works
|
||||
.video-wrapper
|
||||
.video-container
|
||||
iframe src="//www.youtube.com/embed/ylYcvTY9CVo" frameborder="0" allowfullscreen
|
||||
.cta-container
|
||||
h2 It's FREE! Ready to Go?
|
||||
= link_to image_tag("web/cta_button.png", :alt => "Sign up now for your free account!"), signup_path, class: "signup", id: "signup"
|
||||
.column
|
||||
= render :partial => "users/buzz", locals: {header: 'From Our Community'}
|
||||
.more-container
|
||||
h2 Still Need More Info?
|
||||
= link_to 'Watch a Video to See How to Get Started', landing_wb_path(p: 3), class: 'landing_wb'
|
||||
|
||||
br clear="all"
|
||||
|
|
@ -0,0 +1,17 @@
|
|||
- provide(:page_name, 'landing_page wb_3')
|
||||
|
||||
.column
|
||||
h1 See How to Get Started
|
||||
.video-wrapper
|
||||
.video-container
|
||||
iframe src="//www.youtube.com/embed/DBo--aj_P1w" frameborder="0" allowfullscreen
|
||||
.cta-container
|
||||
h2 It's FREE! Ready to Go?
|
||||
= link_to image_tag("web/cta_button.png", :alt => "Sign up now for your free account!"), signup_path, class: "signup", id: "signup"
|
||||
.column
|
||||
= render :partial => "users/buzz", locals: {header: 'From Our Community'}
|
||||
.more-container
|
||||
h2 Not a Good Time to Sign Up?
|
||||
= render :partial => 'users/follow_links'
|
||||
|
||||
br clear="all"
|
||||
|
|
@ -1,7 +1,8 @@
|
|||
<% header ||= local_assigns[:header] = local_assigns.fetch(:header, 'JamKazam Buzz...') %>
|
||||
|
||||
<!-- BEGIN BUZZ -->
|
||||
<%= content_tag(:div, :class => "buzz") do %>
|
||||
<%= content_tag(:h2, "JamKazam Buzz...") %>
|
||||
<%= content_tag(:h2, header) %>
|
||||
<br>
|
||||
<!-- BEGIN ITEMS -->
|
||||
<%= content_tag(:div, :class => "buzz-items") do %>
|
||||
|
|
|
|||
|
|
@ -0,0 +1 @@
|
|||
.fb-like data-href="https://developers.facebook.com/docs/plugins/" data-layout="button_count" data-action="like"
|
||||
|
|
@ -0,0 +1,4 @@
|
|||
.share_links
|
||||
- [:twitter, :facebook, :google].each do |site|
|
||||
= link_to(image_tag("content/icon_#{site}.png", :style => "vertical-align:top"), "javascript:void(0)", {'data-site' => site, :class => 'like-link'})
|
||||
= ' '
|
||||
|
|
@ -7,10 +7,7 @@
|
|||
= link_to image_tag("web/cta_button.png", :alt => "Sign up now for your free account!"), signup_path, class: "signup", id: "signup"
|
||||
.clearleft
|
||||
= link_to "Already have an account?", signin_path, class: "signin", id: "signin"
|
||||
.share_links
|
||||
- [:twitter, :facebook, :google].each do |site|
|
||||
= link_to(image_tag("content/icon_#{site}.png", :style => "vertical-align:top"), "javascript:void(0)", {'data-site' => site, :class => 'like-link'})
|
||||
= ' '
|
||||
= render :partial => 'users/share_links'
|
||||
|
||||
- content_for :after_black_bar do
|
||||
- if @jamfest_2014
|
||||
|
|
|
|||
Loading…
Reference in New Issue