You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
Jack Lukic 85bc29fa2e Update README.md 11 years ago
..
node_modules structure -- grunt watch and upgrade. 11 years ago
out regenerating 11 years ago
src lots of fixes to form and button, adds beginning of checkbox docs 11 years ago
.bowerrc structure -- include semantic bower package in docs. 11 years ago
.jshintrc Fixes issue with accidental submodule 11 years ago
Gruntfile.js structure -- grunt watch and upgrade. 11 years ago
LICENSE.md Fixes issue with accidental submodule 11 years ago
Procfile Fixes issue with accidental submodule 11 years ago
README.md Fixes issue with accidental submodule 11 years ago
docpad.coffee structure -- grunt watch and upgrade. 11 years ago
grunt-config.json grunt -- update and add bower and watch. 11 years ago
package.json structure -- grunt watch and upgrade. 11 years ago

README.md

HTML5 Boilerplate skeleton for DocPad

Bare essentials for building a modern website with best practices

Why the fork?

This fork adds Grunt to show an example of taking the HTMLBP and minifying and concatenating all the JS and CSS assets into single files and including those in the layout.

What is different?

grunt-config.json

  • This file is contains the object passed to grunt.initConfig in grunt.js. It has been put into its own file since it is used in docpad.coffee to build file lists for inclusion in the layout and deleting unused files.

grunt.js

  • This is the Grunt file. It runs initConfig with the grunt-config.json object. It also registers a default task with all the keys from the config file.

docpad.coffee

  • I added the helper functions getGruntedStyles and getGruntedScripts. These functions will return all the compiled assets that contain .min.(css|js) with the correct base path.
  • A writeAfter DocPad event. It is based on this gist, with some additional functionality. It will run the default grunt command. Then it will use your grunt-config.json to delete the src files since they are no longer needed. It will also delete any empty directories in the 'out/' directory.

layouts/default.html.eco

  • The script and style blocks have been replaced with calls to the helper functions described above.

Getting Started

  1. Install DocPad

  2. Clone the project and run the server

    git clone git://github.com/lukekarrys/html5-boilerplate.docpad.git
    cd html5-boilerplate.docpad
    npm install
    docpad run
    

    ``

  3. Open http://localhost:9778/

  4. Start hacking away by modifying the src directory

License

This skeleton is made "public domain" using the Creative Commons Zero, as such before you publish your website you should place your desired license here and within the LICENSE.md file.

If you are wanting to open-source your website, we suggest using the Creative Commons Attribution License for content and the MIT License for code. In which case you'd probably want to use the following as your license:

Unless stated otherwise, all content is licensed under the [Creative Commons Attribution License](http://creativecommons.org/licenses/by/3.0/) and code licensed under the [MIT License](http://creativecommons.org/licenses/MIT/), © [Your Name](http://your.website)

If you are wanting to close-source your website, we'd suggest using the following:

Copyright [Your Name](http://your.website). All rights reserved.

Other included things such as themes and libraries are likely already licensed by their own invidual licenses, so be sure to respect their licenses too.

Thanks, the DocPad team loves you.