https://github.com/patternfly/patternfly-site
Wordpress theme for patternfly.org v1
https://github.com/patternfly/patternfly-site
Last synced: 8 months ago
JSON representation
Wordpress theme for patternfly.org v1
- Host: GitHub
- URL: https://github.com/patternfly/patternfly-site
- Owner: patternfly
- License: apache-2.0
- Archived: true
- Created: 2014-01-15T15:57:06.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2018-03-02T17:43:55.000Z (almost 8 years ago)
- Last Synced: 2025-03-13T07:02:22.200Z (10 months ago)
- Language: JavaScript
- Homepage:
- Size: 18.3 MB
- Stars: 2
- Watchers: 15
- Forks: 28
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PatternFly site Wordpress theme based on [WP-Bootstrap](https://github.com/320press/wordpress-bootstrap/)
## Development
Development setup requires nodejs. If you do not already have nodejs and npm installed on your system, please see https://github.com/joyent/node/wiki/Installing-Node.js-via-package-manager for how to install on your distribution.
### Install Bower Components
After ensuring nodejs and npm are available, install [Bower](http://bower.io/) globally:
npm install -g bower
Now that Bower is available, we can install the required development components:
bower install
At this point, you should now have a top level components/ folder with all dependencies listed in the bower.json file installed.
### Install Development Dependencies
The development includes the use of a number of helpful tasks. In order to setup your development environment to allow running of these tasks, you need to install the local nodejs packages declared in `package.json`. To do this run:
npm install
This will install all necessary development packages into `node_modules/`. At this point, the gruntjs tasks are available for use such as starting a local development server or building the master CSS file.
## Build
### CSS
In development, styling is written and managed through multiple lesscss files. In order to generate the CSS files of all styling, run the build Gruntjs task:
grunt build