Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/polarblau/meta_wordpress
Use your favorite meta languages such as Haml, Sass and Coffeescript to bootstrap and build Wordpress themes.
https://github.com/polarblau/meta_wordpress
Last synced: 3 months ago
JSON representation
Use your favorite meta languages such as Haml, Sass and Coffeescript to bootstrap and build Wordpress themes.
- Host: GitHub
- URL: https://github.com/polarblau/meta_wordpress
- Owner: polarblau
- License: mit
- Created: 2012-11-20T23:21:29.000Z (about 12 years ago)
- Default Branch: master
- Last Pushed: 2013-04-25T09:02:54.000Z (almost 12 years ago)
- Last Synced: 2024-08-02T12:44:10.767Z (6 months ago)
- Language: PHP
- Homepage:
- Size: 664 KB
- Stars: 9
- Watchers: 4
- Forks: 1
- Open Issues: 16
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-starred - polarblau/meta_wordpress - Use your favorite meta languages such as Haml, Sass and Coffeescript to bootstrap and build Wordpress themes. (others)
README
## Meta Wordpress
*meta_wordpress* is a small library built around [Guard](https://github.com/guard/guard) which enables you to create Wordpress themes more easily, using meta languages such as Haml, Sass and Coffeescript.
It provides a [basic folder structure ](/docs/executable.md) to get started, a simple [layout engine](/docs/layout.md) and a [few helpers](/docs/helpers.md) to make the work with PHP easier. Read the [documentation](/docs/index.md) to learn more.
***
### Installation
```bash
gem install meta_wordpress
```### Bootstrapping
Navigate to the `/themes` folder of your Wordpress installation, then generate the necessary files to get started:
```bash
meta_wordpress bootstrap fancy_theme
```### Start working
Within your new theme folder, start the file watcher (Guard) and you are good to go:
```bash
meta_wordpress start
```**Read the [documentation](/docs/index.md) to learn more.**