Admin layout example
With custom js filename for es6 components
An alternative JS filename can be used in place of the default es6-components.js
if required (note that this cannot easily be demonstrated here).
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">
<link rel="icon" type="image/x-icon" href="/assets/collections/govuk_publishing_components/favicon-production-f24c2313e8823e049575a8960114d0c48d6638f023ce171650bc471aa7ab420c.png" />
<link rel="stylesheet" href="/assets/collections/application-955785a9b4535aba7f865af73c2f7b5288da599bc61a7cac291259dd0facf952.css" media="all" />
</head>
<body class="gem-c-layout-for-admin govuk-template__body">
<script nonce="6jp64rUh8LQZNAJF9F71OA==">
//<![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/collections/application-1cb321d658f765de25999526c7912a6c3387be81ec2708d4d5024f92fd2d1388.js"></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",
js_module_filename: "es6-bundle"
} do %>
<!-- You probably want to use the header, main & footer components here -->
<% end %>