minty-bootstrap
v2.0.1
Published
A fresh Bootstrap theme
Downloads
44
Maintainers
Readme
Screenshot:
Versions
| Minty version | Bootstrap version | Docs | |---------------|-------------------|---------------------------------------------------------------------| | 2.x.x | 5.x.x | current | | 1.x.x | 4.x.x | here |
Table of contents
Installation and usage
Install Minty via npm
:
npm install minty-bootstrap
Or, download it here.
Add it to your project:
<link rel="stylesheet" src="/your/path/to/minty.min.css">
Or, when you're using npm
:
<link rel="stylesheet" src="node_modules/minty-bootstrap/dist/minty.css">
You can use the non-minified version of Minty by replacing minty.min.css
to minty.css
.
Bootstrap's JavaScript isn't included, so you have to install the JS files separately:
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js" integrity="sha384-gtEjrD/SeCtmISkJkNUaaKMoLD0//ElJ19smozuHV6z3Iehds+3Ulb9Bn9Plx0x4" crossorigin="anonymous"></script>
<!-- or separate: -->
<script src="https://cdn.jsdelivr.net/npm/@popperjs/[email protected]/dist/umd/popper.min.js" integrity="sha384-IQsoLXl5PILFhosVNubq5LC7Qb9DXgDA9i+tQ8Zj3iwWAwPtgFTxbJ8NT4GN1R8p" crossorigin="anonymous"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js" integrity="sha384-Atwg2Pkwv9vp0ygtn1JAojH0nYbwNJLPhwyoVbhoPwBhjQPR5VtM2+xf0Uwh9KtT" crossorigin="anonymous"></script>
You don't have to install Bootstrap's CSS, everything's included in this CSS file.
For usage of Minty, just head over to the Bootstrap docs.
Contributing
- Clone this repository:
git clone https://github.com/garraflavatra/minty.git
- Install dev dependencies:
npm install
- Make changes to
src/*.scss
. - Run
npm start
- Add your changes:
git add *
- Commit your changes.
git commit -m
- Create a pull request.
Thanks for contributing!