Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

1.x #173

Merged
merged 9 commits into from
Mar 22, 2021
Merged

1.x #173

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2016-2020 Alexander Tarkhov
Copyright (c) 2016-2021 Alexander Tarkhov

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
37 changes: 22 additions & 15 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,10 @@ Web app prototyping library based on Bootstrap framework.
### Contents

1. [Compatibility](#compatibility)
1. [Version support](#version-support)
2. [Installation](#installation)
1. [Manually](#manually)
2. [NodeJS](#nodejs)
1. [NodeJS](#nodejs)
2. [Manually](#manually)
3. [Usage](#usage)
1. [Local](#local)
2. [CDN](#cdn)
Expand All @@ -18,25 +19,31 @@ Web app prototyping library based on Bootstrap framework.

Library | Version
------- | -------
Bootstrap | 4.5.0
Bootstrap | >= 4.5.0 and < 5.0

PostBoot does **not overwrite** any components of Bootstrap, but only extends most of them. You can use it completely **safe**.

## Installation
### Version support

### Manually
Bootstrap | Repo
------- | -------
4.x | [1.x](https://github.com/tarkhov/postboot/tree/1.x)

[Download](https://github.com/tarkhov/postboot/releases/download/v1.0.1/postboot-1.0.1.zip) package and unpack it or use following commands:
## Installation

### NodeJS

```bash
wget -O https://github.com/tarkhov/postboot/releases/download/v1.0.1/postboot-1.0.1.zip
unzip postboot-1.0.1.zip
npm install postboot
```

### NodeJS
### Manually

[Download](https://github.com/tarkhov/postboot/releases/download/v1.0.2/postboot.zip) package and unpack it or use following commands:

```bash
npm install [email protected]
wget -O https://github.com/tarkhov/postboot/releases/download/v1.0.2/postboot.zip
unzip postboot.zip
```

## Usage
Expand All @@ -58,14 +65,14 @@ npm install [email protected]

```html
<!-- CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/tarkhov/postboot/v1.0.1/dist/css/postboot.min.css">
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css">
<link rel="stylesheet" href="https://cdn.rawgit.com/tarkhov/postboot/v1.0.2/dist/css/postboot.min.css">

<!-- JS -->
<script src="https://code.jquery.com/jquery-3.5.1.slim.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].0/dist/umd/popper.min.js"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.5.0/js/bootstrap.min.js"></script>
<script src="https://cdn.rawgit.com/tarkhov/postboot/v1.0.1/dist/js/postboot.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected].1/dist/umd/popper.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.min.js"></script>
<script src="https://cdn.rawgit.com/tarkhov/postboot/v1.0.2/dist/js/postboot.min.js"></script>
```

## Author
Expand Down
Loading