mirror of
https://github.com/bigchaindb/site.git
synced 2024-11-22 09:46:57 +01:00
eliminate community page
This commit is contained in:
parent
fe3e1a192a
commit
16a63001f0
@ -1,52 +1,56 @@
|
|||||||
|
//=include bigchain/smoothscroll.js
|
||||||
//=include is-in-viewport/lib/isInViewport.js
|
|
||||||
//=include bigchain/newsletter.js
|
//=include bigchain/newsletter.js
|
||||||
//=include bigchain/testimonials.js
|
//=include is-in-viewport/lib/isInViewport.js
|
||||||
|
|
||||||
jQuery(function($) {
|
jQuery(function($) {
|
||||||
|
|
||||||
|
//
|
||||||
|
// init modules
|
||||||
|
//
|
||||||
Newsletter.init()
|
Newsletter.init()
|
||||||
Testimonials.init()
|
|
||||||
|
|
||||||
|
|
||||||
|
//
|
||||||
|
// Wrigley
|
||||||
|
//
|
||||||
var wrigley = $('#wrigley'),
|
var wrigley = $('#wrigley'),
|
||||||
wrigleyArm = wrigley.find('#arm'),
|
wrigleyArm = wrigley.find('#arm'),
|
||||||
wrigleyHead = wrigley.find('#head'),
|
wrigleyHead = wrigley.find('#head'),
|
||||||
wrigleyEye = wrigley.find('#eye');
|
wrigleyEye = wrigley.find('#eye')
|
||||||
|
|
||||||
var wrigleyAnimationStart = function() {
|
var wrigleyAnimationStart = function() {
|
||||||
|
|
||||||
// set utility classes
|
// set utility classes
|
||||||
if (wrigley.is( ':in-viewport( -180 )' ) ) {
|
if (wrigley.is( ':in-viewport( -180 )' ) ) {
|
||||||
wrigley.addClass('is-ready');
|
wrigley.addClass('is-ready')
|
||||||
|
|
||||||
// toggle paused class so the :hover interaction can fire animation again
|
// toggle paused class so the :hover interaction can fire animation again
|
||||||
wrigleyArm.on('animationend webkitAnimationEnd oAnimationEnd', function(e) {
|
wrigleyArm.on('animationend webkitAnimationEnd oAnimationEnd', function(e) {
|
||||||
wrigleyArm.addClass('paused');
|
wrigleyArm.addClass('paused')
|
||||||
wrigleyHead.addClass('paused');
|
wrigleyHead.addClass('paused')
|
||||||
|
|
||||||
wrigley.on('mouseover', function() {
|
wrigley.on('mouseover', function() {
|
||||||
wrigleyArm.removeClass('paused');
|
wrigleyArm.removeClass('paused')
|
||||||
wrigleyHead.removeClass('paused');
|
wrigleyHead.removeClass('paused')
|
||||||
});
|
})
|
||||||
|
|
||||||
// fire eye blinking once other animations have finished
|
// fire eye blinking once other animations have finished
|
||||||
wrigleyEye.addClass('is-ready');
|
wrigleyEye.addClass('is-ready')
|
||||||
|
|
||||||
wrigleyEye.on('animationend webkitAnimationEnd oAnimationEnd', function(e) {
|
wrigleyEye.on('animationend webkitAnimationEnd oAnimationEnd', function(e) {
|
||||||
wrigleyEye.removeClass('is-ready');
|
wrigleyEye.removeClass('is-ready')
|
||||||
});
|
})
|
||||||
}
|
}
|
||||||
);
|
)
|
||||||
} else {
|
} else {
|
||||||
wrigley.removeClass('is-ready').removeClass('paused');
|
wrigley.removeClass('is-ready').removeClass('paused')
|
||||||
wrigleyArm.removeClass('paused');
|
wrigleyArm.removeClass('paused')
|
||||||
wrigleyHead.removeClass('paused');
|
wrigleyHead.removeClass('paused')
|
||||||
wrigleyEye.removeClass('is-ready').removeClass('paused');
|
wrigleyEye.removeClass('is-ready').removeClass('paused')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// fire all the viewport things
|
// fire all the viewport things
|
||||||
wrigleyAnimationStart();
|
wrigleyAnimationStart()
|
||||||
$(window).on('load resize scroll', wrigleyAnimationStart);
|
$(window).on('load resize scroll', wrigleyAnimationStart)
|
||||||
|
})
|
||||||
});
|
|
@ -1,14 +0,0 @@
|
|||||||
|
|
||||||
//=include bigchain/smoothscroll.js
|
|
||||||
//=include bigchain/github.js
|
|
||||||
//=include bigchain/meetup.js
|
|
||||||
//=include bigchain/newsletter.js
|
|
||||||
|
|
||||||
jQuery(function($) {
|
|
||||||
|
|
||||||
//
|
|
||||||
// init modules
|
|
||||||
//
|
|
||||||
Newsletter.init()
|
|
||||||
|
|
||||||
});
|
|
@ -1,15 +1,10 @@
|
|||||||
//
|
//
|
||||||
// Page: Community
|
// Page: Get started
|
||||||
// ---
|
// ---
|
||||||
// bigchaindb.com
|
// bigchaindb.com
|
||||||
//
|
//
|
||||||
.page-community {
|
|
||||||
.header {
|
|
||||||
background-position: center top;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.section-community {
|
.section--community {
|
||||||
text-align: center;
|
text-align: center;
|
||||||
position: relative;
|
position: relative;
|
||||||
// make room for wrigely
|
// make room for wrigely
|
||||||
@ -33,7 +28,6 @@
|
|||||||
.icon {
|
.icon {
|
||||||
@include transition;
|
@include transition;
|
||||||
}
|
}
|
||||||
|
|
||||||
display: inline-block;
|
display: inline-block;
|
||||||
box-shadow: none;
|
box-shadow: none;
|
||||||
padding: $btn-padding-y-sm $btn-padding-x-sm;
|
padding: $btn-padding-y-sm $btn-padding-x-sm;
|
@ -1,5 +0,0 @@
|
|||||||
//
|
|
||||||
// Page: Get started
|
|
||||||
// ---
|
|
||||||
// bigchaindb.com
|
|
||||||
//
|
|
@ -49,14 +49,13 @@
|
|||||||
|
|
||||||
// specific page styles
|
// specific page styles
|
||||||
@import 'page-front';
|
@import 'page-front';
|
||||||
@import 'page-start';
|
@import 'page-getstarted';
|
||||||
@import 'page-whitepaper';
|
@import 'page-whitepaper';
|
||||||
@import 'page-404';
|
@import 'page-404';
|
||||||
@import 'page-styleguide';
|
@import 'page-styleguide';
|
||||||
@import 'page-about';
|
@import 'page-about';
|
||||||
@import 'page-features';
|
@import 'page-features';
|
||||||
@import 'page-usecases';
|
@import 'page-usecases';
|
||||||
@import 'page-community';
|
|
||||||
@import 'page-contact';
|
@import 'page-contact';
|
||||||
@import 'page-cla';
|
@import 'page-cla';
|
||||||
@import 'page-partners';
|
@import 'page-partners';
|
||||||
|
@ -14,20 +14,22 @@ main:
|
|||||||
secondary:
|
secondary:
|
||||||
- title: Whitepaper
|
- title: Whitepaper
|
||||||
url: "/whitepaper/"
|
url: "/whitepaper/"
|
||||||
|
- title: Blog
|
||||||
|
url: https://blog.bigchaindb.com
|
||||||
- title: About
|
- title: About
|
||||||
url: "/about/"
|
url: "/about/"
|
||||||
- title: Contact
|
- title: Contact
|
||||||
url: "/contact/"
|
url: "/contact/"
|
||||||
- title: Blog
|
|
||||||
url: https://blog.bigchaindb.com
|
|
||||||
|
|
||||||
community:
|
community:
|
||||||
|
- title: Gitter
|
||||||
|
url: https://gitter.im/bigchaindb/bigchaindb
|
||||||
- title: GitHub
|
- title: GitHub
|
||||||
url: https://github.com/bigchaindb
|
url: https://github.com/bigchaindb
|
||||||
- title: Twitter
|
- title: Twitter
|
||||||
url: https://twitter.com/BigchainDB
|
url: https://twitter.com/BigchainDB
|
||||||
- title: Gitter
|
- title: Meetup
|
||||||
url: https://gitter.im/bigchaindb/bigchaindb
|
url: https://www.meetup.com/BigchainDB-IPDB-Meetup
|
||||||
|
|
||||||
legal:
|
legal:
|
||||||
- title: Terms
|
- title: Terms
|
||||||
|
@ -1,48 +0,0 @@
|
|||||||
---
|
|
||||||
layout: page
|
|
||||||
|
|
||||||
title: Community
|
|
||||||
tagline: "Get Involved"
|
|
||||||
description: 'There are many ways you can contribute to the BigchainDB project, some very easy and others more involved.'
|
|
||||||
|
|
||||||
image: photo2.jpg
|
|
||||||
|
|
||||||
js: page-community.min.js
|
|
||||||
quotes: set3
|
|
||||||
---
|
|
||||||
|
|
||||||
<section class="section section-community">
|
|
||||||
<div class="row">
|
|
||||||
<header class="section-header">
|
|
||||||
<p class="section-description">There are many ways you can contribute to the BigchainDB project, some very easy and others more involved. We welcome all potential contributors, so we ask that everyone participating abide by some simple guidelines.</p>
|
|
||||||
|
|
||||||
<a href="{{ site.social.github.url }}/{{ site.social.github.repo }}/blob/master/CONTRIBUTING.md" class="btn btn-primary btn-sm">Read The Guidelines</a>
|
|
||||||
</header>
|
|
||||||
|
|
||||||
<div class="grid grid--full grid-small--fit grid--gutters">
|
|
||||||
<div class="grid__col">
|
|
||||||
<h1>Follow</h1>
|
|
||||||
<p>Follow us for the latest updates</p>
|
|
||||||
|
|
||||||
{% for link in site.social %}
|
|
||||||
<a class="social-link js-social-link" href="{{ link[1].url }}" title="{{ link[1].title }}">
|
|
||||||
<svg class="icon icon--social icon--{{ link[0] }}" aria-labelledby="title">
|
|
||||||
<title>{{ link.title }}</title>
|
|
||||||
<use xlink:href="/assets/img/sprite.svg#{{ link[0] }}"></use>
|
|
||||||
</svg>
|
|
||||||
<span class="social-link__title">{{ link[1].title }}</span>
|
|
||||||
</a>
|
|
||||||
{% endfor %}
|
|
||||||
|
|
||||||
</div>
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</div>
|
|
||||||
|
|
||||||
{% include svg/wrigley-with-stage.svg %}
|
|
||||||
|
|
||||||
</section>
|
|
||||||
|
|
||||||
{% include sections/section-newsletter.html %}
|
|
||||||
|
|
||||||
{% include sections/section-testimonials.html %}
|
|
@ -4,7 +4,10 @@ layout: page
|
|||||||
title: Get started
|
title: Get started
|
||||||
description: ""
|
description: ""
|
||||||
|
|
||||||
js: page-start.min.js
|
js: page-getstarted.min.js
|
||||||
|
|
||||||
|
redirect_from:
|
||||||
|
- /community/
|
||||||
---
|
---
|
||||||
|
|
||||||
<section class="section section--architecture">
|
<section class="section section--architecture">
|
||||||
@ -31,26 +34,55 @@ js: page-start.min.js
|
|||||||
</div>
|
</div>
|
||||||
</nav>
|
</nav>
|
||||||
|
|
||||||
<section class="section section--server" id="#server">
|
<section class="section section--server" id="server">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="section section--drivers" id="#drivers">
|
<section class="section section--drivers background--darker" id="drivers">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="section section--drivers" id="#docs">
|
<section class="section section--docs" id="docs">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
<section class="section section--drivers" id="#community">
|
<section class="section section--community" id="community">
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
<header class="section-header">
|
||||||
|
<h1 class="section-title">Get Involved</h1>
|
||||||
|
<p class="section-description">There are many ways you can contribute to the BigchainDB project, some very easy and others more involved. We welcome all potential contributors, so we ask that everyone participating abide by some simple guidelines.</p>
|
||||||
|
|
||||||
|
<a href="{{ site.social.github.url }}/{{ site.social.github.repo }}/blob/master/CONTRIBUTING.md" class="btn btn-primary btn-sm">Read The Guidelines</a>
|
||||||
|
</header>
|
||||||
|
|
||||||
|
<div class="grid grid--full grid-small--fit grid--gutters">
|
||||||
|
<div class="grid__col">
|
||||||
|
<h1>Follow</h1>
|
||||||
|
<p>Follow us for the latest updates</p>
|
||||||
|
|
||||||
|
{% for link in site.social %}
|
||||||
|
<a class="social-link js-social-link" href="{{ link[1].url }}" title="{{ link[1].title }}">
|
||||||
|
<svg class="icon icon--social icon--{{ link[0] }}" aria-labelledby="title">
|
||||||
|
<title>{{ link.title }}</title>
|
||||||
|
<use xlink:href="/assets/img/sprite.svg#{{ link[0] }}"></use>
|
||||||
|
</svg>
|
||||||
|
<span class="social-link__title">{{ link[1].title }}</span>
|
||||||
|
</a>
|
||||||
|
{% endfor %}
|
||||||
|
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
{% include svg/wrigley-with-stage.svg %}
|
||||||
|
|
||||||
</section>
|
</section>
|
||||||
|
|
||||||
|
{% include sections/section-newsletter.html %}
|
||||||
|
Loading…
Reference in New Issue
Block a user