Skip to content

Commit

Permalink
Merge pull request #173 from tarkhov/1.x
Browse files Browse the repository at this point in the history
1.x
  • Loading branch information
tarkhov authored Mar 22, 2021
2 parents 36bf371 + ebb90ab commit 498d8b9
Show file tree
Hide file tree
Showing 290 changed files with 9,712 additions and 5,593 deletions.
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

0 comments on commit 498d8b9

Please sign in to comment.