Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

Awesome Lists containing this project

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.**