Last active
August 29, 2015 14:05
-
-
Save jakecleary/5b3b1aeeedc84bf88cca to your computer and use it in GitHub Desktop.
The assets structure for my Wordpress Boilerplate
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
. | |
├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