Skip to content

Instantly share code, notes, and snippets.

@dblandin
Created May 12, 2012 01:08
Show Gist options
  • Save dblandin/2663506 to your computer and use it in GitHub Desktop.
Save dblandin/2663506 to your computer and use it in GitHub Desktop.
HTML5/JS/CSS Templates

HTML5/JS/CSS Templates w/ Grunt

File structure

./css
  ./css/main.css
./dist
  .all.css
  ./all.js
./fallback
  ./fallback/jquery.min.js
  ./fallback/jquery-ui.min.js
./js
  ./main.js
./libs
./index.html
./grunt.js
module.exports = function(grunt) {
grunt.initConfig({
lint: {
all: ['js/*.js']
},
concat: {
js: {
src: ['js/*.js', 'libs/*.js'],
dest: 'dist/all.js'
},
css: {
src: ['css/*.css'],
dest: 'dist/all.css'
}
},
min: {
js: {
src: ['dist/all.js'],
dest: 'dist/all.min.js'
}
}
});
};
<!doctype html>
<html>
<!--
HTML5 Template
by Devon Blandin, May 2012
-->
<head>
<meta charset="utf-8">
<title>HTML5 Template</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>
<script>window.jQuery || document.write('<script src="fallback/jquery-1.7.1.min.js"><\/script><script src="fallback/jquery-ui.min.js"><\/script><link href="css/jquery-ui.css" rel="stylesheet" type="text/css"/>')</script>
<script src="dist/all.js"></script>
<link rel="stylesheet" href="dist/all.css" />
</head>
<body>
<header>
<h1>HTML5 Template</h1>
</header>
<section>
</section>
<footer>
Devon Blandin
</footer>
</body>
</html>
/*
CSS Template
by Devon Blandin, May 2012
*/
/* http://meyerweb.com/eric/tools/css/reset/
v2.0 | 20110126
License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font: inherit;
vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
display: block;
}
body {
line-height: 1;
}
ol, ul {
list-style: none;
}
blockquote, q {
quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
content: '';
content: none;
}
table {
border-collapse: collapse;
border-spacing: 0;
}
/* ----------- Styles ---------------- */
/*
Javascript Template
by Devon Blandin, May 2012
*/
var init = function() {
// code goes here
}
$(init);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment