lsm/micromono

View on GitHub
example/balancer/views/layout.jade

Summary

Maintainability
Test Coverage
doctype html
html
  head

    if mainBundleCss
      link(type="text/css", rel="stylesheet", href="#{mainBundleCss}")

    script(src="/public/jspm_packages/system.js")
    script(src="/public/config.js")

    if (asset && !asset.bundleDeps) && mainBundleJs
      script(type="text/javascript", src="#{mainBundleJs}")

  body
    if mainEntryJs
      script(type='text/javascript').
        System.import('#{mainEntryJs}');
    h1
      a#title(href="/") MicroMono Example

    h2 #{name}

    div !{yield}