Skip to content

Instantly share code, notes, and snippets.

@jakecleary
Last active August 29, 2015 14:05
Show Gist options
  • Save jakecleary/5b3b1aeeedc84bf88cca to your computer and use it in GitHub Desktop.
Save jakecleary/5b3b1aeeedc84bf88cca to your computer and use it in GitHub Desktop.
The assets structure for my Wordpress Boilerplate
.
├assets
├── img
├── js
│ ├── src
│ │ ├── main.js
│ │ └── ...
│ └── vendor
│ └── ...
└── styles
├── jeet
│ ├── _functions.scss
│ ├── _grid.scss
│ └── _settings.scss
├── mixins
│ ├── _breakpoints.scss
│ ├── _helpers.scss
│ └── _font-awesome.scss
├── partials
│ ├── _footer.scss
│ ├── _header.scss
│ ├── _home.scss
│ ├── _layout.scss
│ ├── _reset.scss
│ ├── _sidebar.scss
│ └── _typography.scss
├── placeholders
│ ├── _buttons.scss
│ ├── _clearfix.scss
│ ├── _forms.scss
│ ├── _layout.scss
│ └── _typography.scss
├── vars
│ ├── _colors.scss
│ ├── _misc.scss
│ └── _typography.scss
├── vendor
│ └── ...
└── main.scss
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment