An open API service indexing awesome lists of open source software.

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

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/)