PostBoot
Web app prototyping library based on Bootstrap framework.
Contents
Compatibility
PostBoot does not overwrite any components of Bootstrap, but only extends most of them. You can use it completely safe.
Installation
NPM
npm install postboot
Usage
CDN
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PostBoot</title>
<link href="https://cdn.jsdelivr.net/npm/bootstrap/dist/css/bootstrap.min.css" rel="stylesheet">
<link href="https://cdn.jsdelivr.net/npm/postboot/dist/css/postboot.min.css" rel="stylesheet">
</head>
<body>
<h1>PostBoot</h1>
<script src="https://cdn.jsdelivr.net/npm/bootstrap/dist/js/bootstrap.bundle.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/postboot/dist/js/postboot.min.js"></script>
</body>
</html>
Local
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>PostBoot</title>
<link href="css/bootstrap.min.css" rel="stylesheet">
<link href="css/postboot.min.css" rel="stylesheet">
</head>
<body>
<h1>PostBoot</h1>
<script src="js/bootstrap.bundle.min.js"></script>
<script src="js/postboot.min.js"></script>
</body>
</html>
Author
License
This project is licensed under the MIT License - see the LICENSE file for details.