-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
10,607 changed files
with
931,858 additions
and
2 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright (c) 2013-2019 Blackrock Digital LLC | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1 @@ | ||
# WALS2022 | ||
Repository for the website of the International Workshop of Web Applications for Life Sciences, co-located with ICWE 2022 | ||
Repository for Web Applications in Life Sciences (WALS) Workshop, co-located with ICWE 2022 in Bari, Italy |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
{ | ||
"name": "genomica", | ||
"description": "Genomic website", | ||
"main": "", | ||
"authors": [ | ||
"Volox" | ||
], | ||
"license": "MIT", | ||
"homepage": "", | ||
"private": true, | ||
"ignore": [ | ||
"**/.*", | ||
"node_modules", | ||
"bower_components", | ||
"test", | ||
"tests" | ||
], | ||
"dependencies": { | ||
"350433": "https://gist.github.com/remy/350433.git", | ||
"jquery": "^2.2.3", | ||
"bootstrap": "v4.0.0-alpha.3", | ||
"tether": "^1.3.2", | ||
"normalize-css": "^4.1.1", | ||
"font-awesome": "fontawesome#^4.6.2", | ||
"es6-promise": "^3.2.1", | ||
"fetch": "^1.0.0", | ||
"modernizr": "^3.3.1", | ||
"jquery-sticky": "sticky#^1.0.3" | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/*! | ||
* Start Bootstrap - Scrolling Nav (https://startbootstrap.com/template-overviews/scrolling-nav) | ||
* Copyright 2013-2019 Start Bootstrap | ||
* Licensed under MIT (https://github.com/BlackrockDigital/startbootstrap-scrolling-nav/blob/master/LICENSE) | ||
*/ | ||
header { | ||
padding: 156px 0 100px; | ||
} | ||
|
||
section { | ||
padding: 150px 0; | ||
} |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
"use strict"; | ||
|
||
// Load plugins | ||
const browsersync = require("browser-sync").create(); | ||
const del = require("del"); | ||
const gulp = require("gulp"); | ||
const merge = require("merge-stream"); | ||
|
||
// BrowserSync | ||
function browserSync(done) { | ||
browsersync.init({ | ||
server: { | ||
baseDir: "./" | ||
}, | ||
port: 3000 | ||
}); | ||
done(); | ||
} | ||
|
||
// BrowserSync reload | ||
function browserSyncReload(done) { | ||
browsersync.reload(); | ||
done(); | ||
} | ||
|
||
// Clean vendor | ||
function clean() { | ||
return del(["./vendor/"]); | ||
} | ||
|
||
// Bring third party dependencies from node_modules into vendor directory | ||
function modules() { | ||
// Bootstrap | ||
var bootstrap = gulp.src('./node_modules/bootstrap/dist/**/*') | ||
.pipe(gulp.dest('./vendor/bootstrap')); | ||
// jQuery | ||
var jquery = gulp.src([ | ||
'./node_modules/jquery/dist/*', | ||
'!./node_modules/jquery/dist/core.js' | ||
]) | ||
.pipe(gulp.dest('./vendor/jquery')); | ||
// jQuery Easing | ||
var jqueryEasing = gulp.src('./node_modules/jquery.easing/*.js') | ||
.pipe(gulp.dest('./vendor/jquery-easing')); | ||
return merge(bootstrap, jquery, jqueryEasing); | ||
} | ||
|
||
// Watch files | ||
function watchFiles() { | ||
gulp.watch("./**/*.css", browserSyncReload); | ||
gulp.watch("./**/*.html", browserSyncReload); | ||
} | ||
|
||
// Define complex tasks | ||
const vendor = gulp.series(clean, modules); | ||
const build = gulp.series(vendor); | ||
const watch = gulp.series(build, gulp.parallel(watchFiles, browserSync)); | ||
|
||
// Export tasks | ||
exports.clean = clean; | ||
exports.vendor = vendor; | ||
exports.build = build; | ||
exports.watch = watch; | ||
exports.default = build; |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.