blog menu page & blog article page

This commit is contained in:
Nina Juresic
2017-10-23 15:54:25 +02:00
parent f21a22b539
commit 3ec0fe7455
3048 changed files with 241133 additions and 432 deletions

30
node_modules/has-color/readme.md generated vendored Normal file
View File

@@ -0,0 +1,30 @@
# has-color [![Build Status](https://travis-ci.org/sindresorhus/has-color.svg?branch=master)](https://travis-ci.org/sindresorhus/has-color)
> Detect whether a terminal supports color.
Used in the terminal color module [chalk](https://github.com/sindresorhus/chalk).
## Install
```bash
$ npm install --save has-color
```
## Usage
```js
var hasColor = require('has-color');
if (hasColor) {
console.log('Terminal supports color.');
}
```
It obeys the `--color` and `--no-color` CLI flags.
## License
[MIT](http://opensource.org/licenses/MIT) © [Sindre Sorhus](http://sindresorhus.com)