Admin layout example

With type module

Adds ‘type=module’ to the javascript_include_tag. By default, use_type_module is false.

How it looks (preview)

<!DOCTYPE html>
<html lang="en" class="govuk-template govuk-template--rebranded">
  <head>
    <meta charset="utf-8">
    <title>A page title - GOV.UK Publishing</title>
    <meta name="robots" content="noindex,nofollow,noimageindex">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="csrf-param" content="authenticity_token" />
<meta name="csrf-token" content="VSKwv5AReUFAlQ26jnckmLz7ejyEGa9ECDyaDqOcsYWtmMwlsj9pJjB_ASs3YT5UWIz05gDc5M7KirnY7uqJeA" />
    <link rel="icon" type="image/x-icon" href="/assets/govuk_publishing_components/favicon-production-0a27a2c911a5ea18c85567dd42b35bb014640500dbf9465d66096518ec827a9e.png" />
    <link rel="stylesheet" href="/assets/application-c7a1f5ba417af80381b5cd139cc487c2d8fe2134c31016509a9f4fe6678685b3.css" media="all" />
    
  </head>
  <body class="gem-c-layout-for-admin govuk-template__body">
    <script nonce="2503/0f7VmT7kcemFIx/CA==">
//<![CDATA[
      document.body.className += ' js-enabled' + ('noModule' in HTMLScriptElement.prototype ? ' govuk-frontend-supported' : '');

//]]>
</script>    
      <!-- You probably want to use the header, main & footer components here -->


      <script src="/assets/application-f00c5589a77baa1e24f1116fdeba4aabfaaba829f534c757b279706b410ab5e9.js" type="module"></script>
  </body>
</html>

How to call this example

<%= render "govuk_publishing_components/components/layout_for_admin", {
  environment: "production",
  product_name: "Publishing",
  browser_title: "A page title",
  use_type_module: true
} do %>
  <!-- You probably want to use the header, main & footer components here -->
<% end %>