Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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: 4 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 (over 7 years ago)
- Default Branch: master
- Last Pushed: 2021-04-21T07:23:53.000Z (over 3 years ago)
- Last Synced: 2023-03-21T12:01:28.271Z (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