2.1.2 • Published 7 years ago

docpad-plugin-without v2.1.2

Weekly downloads
2
License
MIT
Repository
github
Last release
7 years ago

Without Plugin for DocPad

NPM version Build Status

Use withOut templates inside DocPad sites.

Install

docpad install without

Usage

withOut templates look like Jade or HAML templates but they are plain Coffee Script!

# src/layouts/default.html.coffee
(tag "!DOCTYPE", true) html: true
html ->
  head ->
    title @getPreparedTitle()
    raw @getBlock("meta").toHTML()
    raw @getBlock("styles").add(["/styles/style.css"]).toHTML()
  body ->
    h1 @document.title
    raw @content
    raw @getBlock("scripts").add(["/vendor/jquery.js", "/scripts/script.js"]).toHTML()

For historic reasons you can put withOut templates into .html.wo files, but recommended extension is .html.coffee.

License

Licensed under the incredibly permissive MIT license