Skip to content
This repository has been archived by the owner on Jan 14, 2022. It is now read-only.

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
taiju committed Mar 9, 2012
0 parents commit 73f6f06
Show file tree
Hide file tree
Showing 8 changed files with 37 additions and 0 deletions.
13 changes: 13 additions & 0 deletions README.md
@@ -0,0 +1,13 @@
# Static Web Sites Project Base
## Directories & Files
├── _coffee
├── _scss
├── assets
│   ├── images
│   ├── javascripts
│   └── stylesheets
└── config
└── compass.rb
## How to use
cd $PROJECT_DIR
compass create -c config/compass.rb
Empty file added _coffee/.gitignore
Empty file.
Empty file added _scss/.gitignore
Empty file.
Empty file added assets/.gitignore
Empty file.
Empty file added assets/images/.gitignore
Empty file.
Empty file added assets/javascripts/.gitignore
Empty file.
Empty file added assets/stylesheets/.gitignore
Empty file.
24 changes: 24 additions & 0 deletions config/compass.rb
@@ -0,0 +1,24 @@
# Require any additional compass plugins here.

# Set this to the root of your project when deployed:
http_path = "/"
css_dir = "assets/stylesheets"
sass_dir = "_scss"
images_dir = "assets/images"
javascripts_dir = "assets/javascripts"

# You can select your preferred output style here (can be overridden via the command line):
# output_style = :expanded or :nested or :compact or :compressed

# To enable relative paths to assets via compass helper functions. Uncomment:
# relative_assets = true

# To disable debugging comments that display the original location of your selectors. Uncomment:
# line_comments = false


# If you prefer the indented syntax, you might want to regenerate this
# project again passing --syntax sass, or you can uncomment this:
# preferred_syntax = :sass
# and then run:
# sass-convert -R --from scss --to sass sass scss && rm -rf sass && mv scss sass

0 comments on commit 73f6f06

Please sign in to comment.