https://github.com/lemehovskiy/wp-starter-theme
A Starter Theme for WordPress
https://github.com/lemehovskiy/wp-starter-theme
wordpress wordpress-development wordpress-theme
Last synced: 17 days ago
JSON representation
A Starter Theme for WordPress
- Host: GitHub
- URL: https://github.com/lemehovskiy/wp-starter-theme
- Owner: lemehovskiy
- Created: 2017-05-22T18:43:37.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T07:23:53.000Z (about 5 years ago)
- Last Synced: 2025-02-26T06:25:19.177Z (over 1 year ago)
- Topics: wordpress, wordpress-development, wordpress-theme
- Language: SCSS
- Homepage:
- Size: 439 KB
- Stars: 1
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Fontello scripts
### open
```sh
make -f fontello
```
### save
```sh
make -f fontello fontsave
```
## PLOP Micro-generator framework
### Init builder
```sh
plop builder {{builder-name}}
```
#### In result you should have structure like this:
├── ...
└── wp-starter-theme
├── ...
└── src
├── ...
└── sass
├── ...
├── {{builder-name}}-builder
│ └── {{builder-name}}-builder.scss
└── ...
##### And import {{builder-name}}-builder.scss to style.scss
### Builder section
```sh
plop section {{section-name}} {{builder-name}}
```
#### In result you should have structure like this:
##### SASS:
├── ...
└── wp-starter-theme
├── ...
└── src
├── ...
└── sass
├── ...
├── {{builder-name}}-builder
| ├── {{builder-name}}-builder.scss
│ └── {{section-name}}-intro-1.scss
└── ...
##### And import {{section-name}}-builder.scss to {{builder-name}}-builder.scss
##### PHP:
├── ...
└── wp-starter-theme
├── ...
└── template-parts
├── ...
└── {{builder-name}}-builder
└── section-{{section-name}}.php