verb
Version:
Verb makes it easy to build project documentation using simple markdown templates, with zero configuration required.
22 lines (20 loc) • 387 B
JavaScript
/**
* Default layout to use when one isn't
* defined in the options.
*
* @return {String}
* @api Public
*/
module.exports = [
'',
'<html lang="en">',
' <head>',
' {%= include("header") %}',
' </head>',
' <body>',
' <div class="container bs-docs-container">',
' {%= content %}',
' </div>',
' </body>',
'</html>'
].join('\n');