Initial commit

This commit is contained in:
Jozef Toth 2018-04-29 02:40:40 +02:00
commit eff240291a
28 changed files with 44072 additions and 0 deletions

1
.gitignore vendored Executable file
View File

@ -0,0 +1 @@
node_modules

11
.travis.yml Executable file
View File

@ -0,0 +1,11 @@
sudo: false
language: node_js
node_js:
- "node"
install: npm install
script:
- npm test
- gulp
cache:
directories:
- node_modules

21
LICENSE Executable file
View File

@ -0,0 +1,21 @@
The MIT License (MIT)
Copyright (c) 2013-2018 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.

62
README.md Executable file
View File

@ -0,0 +1,62 @@
# [Start Bootstrap - Bare](https://startbootstrap.com/template-overviews/bare/)
[Bare](http://startbootstrap.com/template-overviews/bare/) is a bare HTML starter template for [Bootstrap](http://getbootstrap.com/) created by [Start Bootstrap](http://startbootstrap.com/). This template features predefined file paths for Bootstrap and jQuery, so you can quickly create Bootstrap websites.
## Preview
[![Bare Preview](https://startbootstrap.com/assets/img/templates/bare.jpg)](https://blackrockdigital.github.io/startbootstrap-bare/)
**[View Live Preview](https://blackrockdigital.github.io/startbootstrap-bare/)**
## Status
[![GitHub license](https://img.shields.io/badge/license-MIT-blue.svg)](https://raw.githubusercontent.com/BlackrockDigital/startbootstrap-bare/master/LICENSE)
[![npm version](https://img.shields.io/npm/v/startbootstrap-bare.svg)](https://www.npmjs.com/package/startbootstrap-bare)
[![Build Status](https://travis-ci.org/BlackrockDigital/startbootstrap-bare.svg?branch=master)](https://travis-ci.org/BlackrockDigital/startbootstrap-bare)
[![dependencies Status](https://david-dm.org/BlackrockDigital/startbootstrap-bare/status.svg)](https://david-dm.org/BlackrockDigital/startbootstrap-bare)
[![devDependencies Status](https://david-dm.org/BlackrockDigital/startbootstrap-bare/dev-status.svg)](https://david-dm.org/BlackrockDigital/startbootstrap-bare?type=dev)
## Download and Installation
To begin using this template, choose one of the following options to get started:
* [Download the latest release on Start Bootstrap](https://startbootstrap.com/template-overviews/bare/)
* Install via npm: `npm i startbootstrap-bare`
* Clone the repo: `git clone https://github.com/BlackrockDigital/startbootstrap-bare.git`
* [Fork, Clone, or Download on GitHub](https://github.com/BlackrockDigital/startbootstrap-bare)
## Usage
### Basic Usage
After downloading, simply edit the HTML and CSS files included with the template in your favorite text editor to make changes. These are the only files you need to worry about, you can ignore everything else! To preview the changes you make to the code, you can open the `index.html` file in your web browser.
### Advanced Usage
After installation, run `npm install` and then run `gulp dev` which will open up a preview of the template in your default browser, watch for changes to core template files, and live reload the browser when changes are saved. You can view the `gulpfile.js` to see which tasks are included with the dev environment.
## Bugs and Issues
Have a bug or an issue with this template? [Open a new issue](https://github.com/BlackrockDigital/startbootstrap-bare/issues) here on GitHub or leave a comment on the [template overview page at Start Bootstrap](http://startbootstrap.com/template-overviews/bare/).
## Custom Builds
You can hire Start Bootstrap to create a custom build of any template, or create something from scratch using Bootstrap. For more information, visit the **[custom design services page](https://startbootstrap.com/bootstrap-design-services/)**.
## About
Start Bootstrap is an open source library of free Bootstrap templates and themes. All of the free templates and themes on Start Bootstrap are released under the MIT license, which means you can use them for any purpose, even for commercial projects.
* https://startbootstrap.com
* https://twitter.com/SBootstrap
Start Bootstrap was created by and is maintained by **[David Miller](http://davidmiller.io/)**, Owner of [Blackrock Digital](http://blackrockdigital.io/).
* http://davidmiller.io
* https://twitter.com/davidmillerskt
* https://github.com/davidtmiller
Start Bootstrap is based on the [Bootstrap](http://getbootstrap.com/) framework created by [Mark Otto](https://twitter.com/mdo) and [Jacob Thorton](https://twitter.com/fat).
## Copyright and License
Copyright 2013-2018 Blackrock Digital LLC. Code released under the [MIT](https://github.com/BlackrockDigital/startbootstrap-bare/blob/gh-pages/LICENSE) license.

41
gulpfile.js Executable file
View File

@ -0,0 +1,41 @@
var gulp = require('gulp');
var browserSync = require('browser-sync').create();
var pkg = require('./package.json');
// Copy third party libraries from /node_modules into /vendor
gulp.task('vendor', function() {
// Bootstrap
gulp.src([
'./node_modules/bootstrap/dist/**/*',
'!./node_modules/bootstrap/dist/css/bootstrap-grid*',
'!./node_modules/bootstrap/dist/css/bootstrap-reboot*'
])
.pipe(gulp.dest('./vendor/bootstrap'))
// jQuery
gulp.src([
'./node_modules/jquery/dist/*',
'!./node_modules/jquery/dist/core.js'
])
.pipe(gulp.dest('./vendor/jquery'))
})
// Default task
gulp.task('default', ['vendor']);
// Configure the browserSync task
gulp.task('browserSync', function() {
browserSync.init({
server: {
baseDir: "./"
}
});
});
// Dev task
gulp.task('dev', ['browserSync'], function() {
gulp.watch('./css/*.css', browserSync.reload);
gulp.watch('./*.html', browserSync.reload);
});

340
index.html Executable file
View File

@ -0,0 +1,340 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<meta name="description" content="">
<meta name="author" content="">
<title>Bitcoin Private 2018 Roadmap</title>
<!-- Bootstrap core CSS -->
<link href="vendor/bootstrap/css/bootstrap.min.css" rel="stylesheet">
<link href="style.css" rel="stylesheet">
<link href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css" rel="stylesheet" integrity="sha384-wvfXpqpZZVQGK6TAh5PVlGOfQNHSoD2xbE+QkPxCAFlNEevoEH3Sl0sibVcOQVnN" crossorigin="anonymous">
</head>
<body>
<!-- Page Content -->
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<h1 class="mt-5">Bitcoin Private 2018 Roadmap</h1>
</div>
<div class="roadmap text-center col-sm-12">
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">December 2017</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">First pull request made, Dec 24</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">January 2018</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Replay Protection, Jan 5</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">BTC UTXO integration, Jan 7</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Eleos wallet, Jan 8</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Release of Electrum Wallet, Jan 27</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">First fork simulation and testnet, Jan 28</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">February 2018</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Replay Protection Upgraded, Feb 18</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Full Node Desktop Wallet, Feb 20</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">BIP9, Feb 23</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Second Testnet, Feb 23</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Partial SegWit Support, Feb 25</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Final Testnet, Feb 26
<div class="sub">- Allowed coin claim testing</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Snapshot of BTC and ZCL, Feb 28</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">March 2018</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Fork-merge and Mainnet Launch, March 2-3</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">First BTCP Trezor txn, March 9</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">First BTCP Ledger Nano S txn, March 16</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">April 2018</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Enable SegWit coin claiming, April 11</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Ledger Nano S support, April 16</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Electrum release for Ledger Nano S, April 19</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status done"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Trezor code merged, April 23</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status in-progress"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">BTCP Rebase Begins [MAJOR]
<div class="sub">- Rebase BTCP from ZEC to BTC codebase. ZEC codebase 3 years behind BTC</div>
<div class="sub">- Also enables facile upgrading of the BTCP node with BTC upstream merges</div>
<div class="sub">- Major upgrades include:</div>
<div class="sub">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- BIP32</div>
<div class="sub">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- SegWit</div>
<div class="sub">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Lightning Network</div>
<div class="sub">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;- Many more</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Closed Beta Merchant Platform Release</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">Q2 2018</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Open Beta Merchant Platform Release</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">BTCP Google Chrome extension</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Seed tor nodes</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">One-click miner
<div class="sub">- Allows users to easily mine BTCP at their mining pool of choice or solo mining</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Translated wallets
<div class="sub">- Will include all the languages present on our website</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Merchant Platform Phase 2</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">Q3 2018</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Finish rebasing of BTCP</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Initiate soft fork for full SegWit support</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Lightning Network Initiated</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Shielded Electrum Wallet</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Embedded Tor / Tor by default</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Tor Wallet
<div class="sub">- Complements embedded Tor</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Merchant Platform Phase 2 & 3
<div class="sub">- E-comerce plugins integration (Shopify, Magento, WHMCS, 3dCart, Woocommerce, PrestaShop, Bigcommerce, etc)</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">Q4 2018</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Dandelion privacy protocol
<div class="sub">- Superior obfuscation technique involving the “stem” and the “fluff” that will help to further privatize Bitcoin Privates transparent txns</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Default Privacy
<div class="sub">- Make shielded txns default in all wallets</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Merchant Platform Phase 3 & 4
<div class="sub">- Payment Gateway Integration</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Upgraded Wallet UI/UX</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">2019</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Evaluate alternate proofs of work</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">BTCP DEx</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Incorporate new Jubjub / Sapling enhancements
<div class="sub">- iOS wallet with shielded txns</div>
<div class="sub">- Merchant platform with shielded txns</div>
</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Shielded Transactions become default</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"><i class="fa fa-circle"></i></div>
<div class="col-sm-8 goal text-left">Evaluate making shielded transactions mandatory</div>
</div>
<div class="row">
<div class="col-sm-3 date text-right">&nbsp;</div>
<div class="col-sm-1 status"></i></div>
<div class="col-sm-8 goal text-left">&nbsp;</div>
</div>
</div>
</div>
</div>
<!-- Bootstrap core JavaScript -->
<script src="vendor/jquery/jquery.min.js"></script>
<script src="vendor/bootstrap/js/bootstrap.bundle.min.js"></script>
</body>
</html>

5636
package-lock.json generated Executable file

File diff suppressed because it is too large Load Diff

36
package.json Executable file
View File

@ -0,0 +1,36 @@
{
"title": "Bare",
"name": "startbootstrap-bare",
"version": "4.0.0",
"description": "A basic HTML starter template for Bootstrap",
"keywords": [
"css",
"sass",
"html",
"responsive",
"theme",
"template"
],
"homepage": "https://startbootstrap.com/template-overviews/bare",
"bugs": {
"url": "https://github.com/BlackrockDigital/startbootstrap-bare/issues",
"email": "feedback@startbootstrap.com"
},
"license": "MIT",
"author": "Start Bootstrap",
"contributors": [
"David Miller (http://davidmiller.io/)"
],
"repository": {
"type": "git",
"url": "https://github.com/BlackrockDigital/startbootstrap-bare.git"
},
"dependencies": {
"bootstrap": "4.0.0",
"jquery": "3.3.1"
},
"devDependencies": {
"browser-sync": "2.23.6",
"gulp": "^3.9.1"
}
}

BIN
status.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 95 B

61
style.css Normal file
View File

@ -0,0 +1,61 @@
body {
font-family: ubuntu, sans-serif;
font-size: 20px;
}
.fa {
display: inline-block;
font: normal normal normal 14px/1 FontAwesome;
font-size: inherit;
text-rendering: auto;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
i {
font-style: normal;
font-weight: bold;
}
.roadmap {
margin-top: 80px;
color: #272D63;
line-height: 48px;
}
.date {
color: #444;
font-style: italic;
font-weight: lighter;
}
.goal {
font-style: italic;
}
.status {
background: url(status.png);
background-repeat: repeat-y;
background-position: center;
font-size: 32px;
}
.done {
color: #00A950;
}
.in-progress {
color: #FFAD05;
}
.sub {
line-height: 21px;
font-size: 14px;
}
@media (max-width: 575px) {
.roadmap, .date, .goal {
text-align: center!important;
}
}

8975
vendor/bootstrap/css/bootstrap.css vendored Executable file

File diff suppressed because it is too large Load Diff

1
vendor/bootstrap/css/bootstrap.css.map vendored Executable file

File diff suppressed because one or more lines are too long

7
vendor/bootstrap/css/bootstrap.min.css vendored Executable file

File diff suppressed because one or more lines are too long

1
vendor/bootstrap/css/bootstrap.min.css.map vendored Executable file

File diff suppressed because one or more lines are too long

6328
vendor/bootstrap/js/bootstrap.bundle.js vendored Executable file

File diff suppressed because it is too large Load Diff

1
vendor/bootstrap/js/bootstrap.bundle.js.map vendored Executable file

File diff suppressed because one or more lines are too long

7
vendor/bootstrap/js/bootstrap.bundle.min.js vendored Executable file

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

3894
vendor/bootstrap/js/bootstrap.js vendored Executable file

File diff suppressed because it is too large Load Diff

1
vendor/bootstrap/js/bootstrap.js.map vendored Executable file

File diff suppressed because one or more lines are too long

7
vendor/bootstrap/js/bootstrap.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
vendor/bootstrap/js/bootstrap.min.js.map vendored Executable file

File diff suppressed because one or more lines are too long

10364
vendor/jquery/jquery.js vendored Executable file

File diff suppressed because it is too large Load Diff

2
vendor/jquery/jquery.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
vendor/jquery/jquery.min.map vendored Executable file

File diff suppressed because one or more lines are too long

8269
vendor/jquery/jquery.slim.js vendored Executable file

File diff suppressed because it is too large Load Diff

2
vendor/jquery/jquery.slim.min.js vendored Executable file

File diff suppressed because one or more lines are too long

1
vendor/jquery/jquery.slim.min.map vendored Executable file

File diff suppressed because one or more lines are too long