https://github.com/phore/phore-theme-bootstrap
Bootstrap4 html base theme
https://github.com/phore/phore-theme-bootstrap
phore-bootstrap theme
Last synced: 5 months ago
JSON representation
Bootstrap4 html base theme
- Host: GitHub
- URL: https://github.com/phore/phore-theme-bootstrap
- Owner: phore
- License: mit
- Created: 2018-07-13T13:27:21.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2020-06-18T22:35:19.000Z (almost 6 years ago)
- Last Synced: 2024-11-25T18:51:51.907Z (over 1 year ago)
- Topics: phore-bootstrap, theme
- Language: JavaScript
- Homepage:
- Size: 1.33 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Phore bootstrap base theme
- Includes
- [JQuery 3.3.1]()
- [FontAwesome 5.1]()
- [Bootstrap 4.1]()
- [Popper]()
- [VueJS2]()
- [HightlightJS]()
Libraries are included as assets
## Installation
```
composer require phore/theme-bootstrap
```
## Example
[See example page](https://phore.github.io/phore-theme-bootstrap/docs)
Example / testing is included. Run `kickstart.sh` to go live and open
`http://localhost` in your browser.
## Features
### Daterangepicker
[Homepage](http://www.daterangepicker.com/#config)
**Activate in theme:**
```php
$themeConfig->frameworkds["daterangepicker"] = true;
```
**Example**
```javascript
$('#demo').daterangepicker({
"startDate": "06/12/2020",
"endDate": "06/18/2020"
}, function(start, end, label) {
console.log('New date range selected: ' + start.format('YYYY-MM-DD') + ' to ' + end.format('YYYY-MM-DD') + ' (predefined range: ' + label + ')');
});
```
### Select2
[Homepage](https://select2.org/getting-started/basic-usage)
```php
$themeConfig->frameworkds["select2"] = true;
```
### MomentJS
[Homepage](https://momentjs.com/)