UNPKG

verb

Version:

A project without documentation is like a project that doesn't exist. Verb solves this by making it dead simple to generate docs, using simple markdown templates, with zero configuration required.

22 lines (20 loc) 403 B
/** * Default layout to use when one isn't * defined in the options. * * @return {String} * @api Public */ module.exports = [ '<!doctype html>', '<html lang="en">', ' <head>', ' {%= include("header", {ext: ".html"}) %}', ' </head>', ' <body>', ' <div class="container bs-docs-container">', ' {%= content %}', ' </div>', ' </body>', '</html>' ].join('\n');