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">
  <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="1sLcYrVikvQBRa8kV1EguGCf6FNAiY1j11OzGEpTVP6LYxg0gIv8Dat9NPWevkcFjbm1aiWmgqiMi2dnzyt_Sw" />
    <link rel="icon" type="image/x-icon" href="/assets/govuk_publishing_components/favicon-production-4a099aebc01225747f057d807a1d2a3c9bda85d3a5f7d8239902de140da9f451.png" />
    <link rel="stylesheet" href="/assets/application-0dc9be15bce1144fbf1d77db79ba4737fa72cbc2378bf005589d46099b7ac02d.css" media="all" />
    
  </head>
  <body class="gem-c-layout-for-admin govuk-template__body">
    <script nonce="Mfe1TMtAV5mM0kMDryM20A==">
//<![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-db0bc2f4ae39f46e0fbc2b2ba44623e0a95f0efb571abe59cf2dde50097c1721.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 %>