Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dummy-team/dummy-wordpress
A starter theme designed to help you build Wordpress websites in a sane environment
https://github.com/dummy-team/dummy-wordpress
babel browsersync sass timber twig visual-composer wordpress
Last synced: 11 days ago
JSON representation
A starter theme designed to help you build Wordpress websites in a sane environment
- Host: GitHub
- URL: https://github.com/dummy-team/dummy-wordpress
- Owner: dummy-team
- Created: 2015-05-27T14:40:28.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2023-01-12T05:13:04.000Z (almost 2 years ago)
- Last Synced: 2024-11-24T09:39:32.077Z (about 1 month ago)
- Topics: babel, browsersync, sass, timber, twig, visual-composer, wordpress
- Language: PHP
- Homepage:
- Size: 19.5 MB
- Stars: 5
- Watchers: 3
- Forks: 4
- Open Issues: 23
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Dummy Starter Theme
It is a starter theme powered by Timber and Dummy. It uses Sass, Babel and Twig.
## Usage
### Start server```
wp server --host="0.0.0.0:8080"
```### Start assets building and browser-sync
```
cd wp-content/themes/skin/
gulp
```## Setup
### One line install
```
wp theme install https://github.com/dummy-team/dummy-wordpress/archive/master.zip; cd wp-content/themes/; mv dummy-wordpress skin; cd skin; wp plugin activate skin; composer install; npm install; gulp build;
```## Step by step
```
# Install theme
wp theme install https://github.com/dummy-team/dummy-wordpress/archive/master.zip --activate;# Install timber
cd wp-content/themes/dummy-wordpress
composer install# Install gulp
npm install
gulp build```