Skip to content

Commit

Permalink
added app section, started team section
Browse files Browse the repository at this point in the history
  • Loading branch information
Driss Chelouati committed Apr 11, 2018
1 parent 7ee7fe0 commit e7d2fed
Show file tree
Hide file tree
Showing 11 changed files with 4,363 additions and 4 deletions.
10 changes: 9 additions & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,13 @@ gulp.task('setupBulma', function() {
gulp.src([nodepath + 'bulma/**/*.sass']).pipe(gulp.dest('bulma/'));
});

// Copy js plugins
gulp.task('copy-plugins', function() {
//Modal video
gulp.src([nodepath + 'modal-video/js/**/*']).pipe(gulp.dest('_site/assets/js/modalvideo/'));
gulp.src([nodepath + 'modal-video/css/**/*']).pipe(gulp.dest('_site/assets/js/modalvideo/'));
});

// Copy assets
gulp.task('copy', function() {
//Copy other external css assets
Expand Down Expand Up @@ -149,6 +156,7 @@ gulp.task('compile-js', function() {
return gulp.src([
nodepath + 'jquery/dist/jquery.min.js',
nodepath + 'feather-icons/dist/feather.min.js',
nodepath + 'modal-video/js/modal-video.min.js',
])
.pipe(concat('app.js'))
.pipe(gulp.dest('./_site/assets/js/'));
Expand All @@ -174,5 +182,5 @@ gulp.task('copy-images', function() {
});

gulp.task('init', ['setupBulma']);
gulp.task('build', ['clean','copy','compile-js', 'copy-js', 'compile-sass', 'compile-scss', 'compile-html', 'copy-fonts', 'copy-images']);
gulp.task('build', ['clean','copy', 'copy-plugins', 'compile-js', 'copy-js', 'compile-sass', 'compile-scss', 'compile-html', 'copy-fonts', 'copy-images']);
gulp.task('default', ['server', 'watch']);
1 change: 1 addition & 0 deletions html/layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
<link rel="stylesheet" href="{{root}}assets/css/core.css">
<!--Libraries-->
<link rel="stylesheet" href="{{root}}assets/fonts/cryptofont/css/cryptofont.min.css">
<link rel="stylesheet" href="{{root}}assets/js/modalvideo/modal-video.min.css">

</head>
<body>
Expand Down
78 changes: 76 additions & 2 deletions html/pages/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ <h2 class="subtitle is-5 is-light is-thin">
</div>
<div class="column is-7">
<figure class="image">
<img src="assets/images/illustrations/krytpon-platform.svg" alt="">
<img src="assets/images/illustrations/krypton-platform.svg" alt="">
</figure>
</div>
</div>
Expand Down Expand Up @@ -195,7 +195,7 @@ <h4 class="title is-6 is-tight is-light">Managing</h4>
<span class="text">Get Started</span>
<span class="front-gradient"></span>
</a-->
<div class="video-button levitate">
<div class="video-button levitate js-modal-btn" data-video-id="6WG7D47tGb0">
<img src="assets/images/icons/play.svg">
</div>
</div>
Expand Down Expand Up @@ -728,4 +728,78 @@ <h4 class="subtitle is-6 is-light has-text-centered is-compact">Viderer malorum

</div>
</div>
</section>

<section class="section is-medium is-darkest">
<div class="container">
<div class="divider is-centered"></div>
<h2 class="title is-light is-semibold has-text-centered is-spaced">Live Tracking</h2>
<h4 class="subtitle is-6 is-light has-text-centered is-compact">Viderer malorum sadipscing cum ei. Eu impetus perfecto sit, no sea labore detraxit. Primis mediocrem necessitatibus an vis. Ut sea pertinax perpetua, eruditi volumus quaestio ex mel, has ei tota homero.</h4>

<div class="content-wrapper is-large">

<div class="columns is-vcentered">
<div class="column is-5">
<div class="side-feature-content">

<h3 class="title is-4 is-light"><img src="assets/images/icons/ico/bitnetwork.svg"> <span>Track everything with the App</span></h3>
<div class="divider is-long"></div>
<p class="is-light">Viderer malorum sadipscing cum ei. Eu impetus perfecto sit, no sea labore detraxit. Primis mediocrem necessitatibus an vis. Eu impetus perfecto sit, no sea labore detraxit.</p>
<div class="cta-wrapper">
<a href="#" class="button k-button k-primary raised has-gradient is-fat is-bold">
<span class="text">DOwnload App</span>
<span class="front-gradient"></span>
</a>
</div>
</div>
</div>
<div class="column is-7">
<img class="side-feature" src="assets/images/illustrations/krypton-app.svg">
</div>
</div>

</div>
</div>
</section>

<section class="section is-medium is-end">
<div class="container">
<div class="divider is-centered"></div>
<h2 class="title is-light is-semibold has-text-centered is-spaced">Our Team</h2>
<h4 class="subtitle is-6 is-light has-text-centered is-compact">Viderer malorum sadipscing cum ei. Eu impetus perfecto sit, no sea labore detraxit. Primis mediocrem necessitatibus an vis. Ut sea pertinax perpetua, eruditi volumus quaestio ex mel, has ei tota homero.</h4>

<div class="content-wrapper is-large">
<div class="columns is-vcentered">

<div class="column"></div>

<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">

</div>
<div class="color-card">
<!--img src="assets/images/team/melissa.jpeg"-->
</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">

</div>
</div>
</div>
<div class="column is-3">
<div class="team-member-container">
<div class="dark-card">

</div>
</div>
</div>

<div class="column"></div>
</div>
</div>
</div>
</section>
Loading

0 comments on commit e7d2fed

Please sign in to comment.