Layout with Header, Body, and Footer

by osban

Level: beginner • Mithril.js Version: latest

This is an example that shows, how to use a minimal Layout component with a simplified header and footer section together with a minimal Page component, that is responsible for rendering the content section. The example is greatly simplified, but shows the basic use case.

Live Example

Dependencies

Type Name URL
scriptmithril@latesthttps://unpkg.com/mithril@latest

JavaScript

const layout = {
  view: v =>
    m('div',
      m('.header', 'HEADER'),
      v.children,
      m('.footer', 'FOOTER')
    )
}

const page = {
  view: () => m('p', 'page')
}

m.route(document.body, '/', {
  '/': {render: () => m(layout, m(page))}
})

The snippet is using the most current version of Mithril.js framework. It is aimed at beginners and shows some basic recipes.

In addition to the Mithril.js hyperscript function m(), here we can see an example of Mithril.js' m.route API method.

The example was contributed by osban and last modified on 24 September 2020. Click here to see more examples contributed by the author.

Contribute

If anyone has some improvements, that should be addressed, let me know by opening an issue. Or simply fork the repository on GitHub, push your commits and send a pull request. For starting your work, you can click the edit link below. Thanks for contributing.

See more code examples  •  Edit this example on GitHub