Skip to content

Instantly share code, notes, and snippets.

@devinhalladay
Last active December 20, 2015 04:39
Show Gist options
  • Save devinhalladay/6072735 to your computer and use it in GitHub Desktop.
Save devinhalladay/6072735 to your computer and use it in GitHub Desktop.
My site structure for Sass
> Sites
  > devinhalladay.com
    > .sass-cache # Sass caching to make compiling faster
    > […]
    > public
      > css
	- devin.css # My main stylesheet, compiled by Livereload
	- [*.css]
         
      > […]
      > sass
	> libs
	  - _mixins.scss # Mixins & functions
	  - _reset.scss # Basic resets
	  - _scaffolding.scss # Basic site structure
	> modules
	  - _archive.scss
	  - _article.scss
	  - _footer.scss
	  - _masthead.scss
	  - _misc.scss
	  - _pagination.scss
	  - _posts.scss
	  - _typography.scss
	  - _work.scss
	  - devin.scss # Where I store my variables & @import all other libs and modules, in order of appearance on the site
	  - normalize.scss
	  - ss-standard.scss
	> […]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment