Version: v0.7.1 - Beta.  We welcome contributors & feedback.

Page

The Page module makes it easy to build an HTML5 document according to best practices for performance, social sharing, and search engine ranking.

All methods return the object itself, so method calls can be chained together.

$page = Page.create({
    icon: url'/images/icon.png',
    css: [
        url'/assets/app.css'
    ],
})

$page.setTitle('My Page')
     .setMain(mainContentHtml())
     .send()

Methods

Basic

Content Setters

Other Setters