Skip to content

Instantly share code, notes, and snippets.

@maman
Created August 4, 2013 12:25
Show Gist options
  • Save maman/6150175 to your computer and use it in GitHub Desktop.
Save maman/6150175 to your computer and use it in GitHub Desktop.
front-end dev workflow
/* Import */
@import "compass";
@import "global";
@import "normalize";
@import "foundation";
Compass::BrowserSupport.add_support("repeating-linear-gradient", "webkit", "moz", "ms")
Compass::BrowserSupport.add_support("linear-gradient", "ms")
http_path = "/"
css_dir = "css"
sass_dir = "sass"
images_dir = "img"
javascripts_dir = "js"
output_style = :compressed
# comment when build for productions
sass_options = {:sourcemap => true}
enable_sourcemaps = true
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en" ><!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width" />
<title><!-- Document Title --></title>
<link rel="stylesheet" href="css/main.css" />
<link rel="shortcut icon" href="favicon.ico">
<!--[if lt IE 9 ]>
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script>
<![endif]-->
</head>
<body>
<script src="js/vendor/jquery.js"></script>
<script src="js/plugin.js"></script>
<script src="js/main.js"></script>
</body>
</html>
<!DOCTYPE html>
<!--[if IE 8]><html class="no-js lt-ie9" lang="en"><![endif]-->
<!--[if gt IE 8]><!--><html class="no-js" lang="en" ><!--<![endif]-->
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="chrome=1">
<meta name="viewport" content="width=device-width" />
<title><!-- Document Title --></title>
<link rel="stylesheet" href="css/app.css" />
<link rel="shortcut icon" href="favicon.ico">
<!--[if lt IE 9 ]>
<script src="http://ajax.googleapis.com/ajax/libs/chrome-frame/1/CFInstall.min.js"></script>
<script>window.attachEvent("onload",function(){CFInstall.check({mode:"overlay"})})</script>
<![endif]-->
</head>
<body>
<script src="js/vendor/jquery.js"></script>
<script src="js/plugin.js"></script>
<script src="js/main.js"></script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment