Sha256: c38fc0bd625c87d1630106f00b74a75de4135b11a2765ef20356f5a0ba524f71

Contents?: true

Size: 1.58 KB

Versions: 4

Compression:

Stored size: 1.58 KB

Contents

<%= yield :top_of_page %>

<html lang="en">
<head>
    <title><%= yield :page_title %> </title>
    <meta name="viewport" content="width=device-width" />
    <%= yield :head %>
</head>

<body class="<%= yield :body_classes %>">
    <script>
        document.body.className = ((document.body.className) ? document.body.className + ' js-enabled' : 'js-enabled');
    </script>
    <%= yield :body_start %>

    <header role="banner" id="global-header" class="<%= yield :header_class%>">
        <div id="header-wrapper">
            <div id="header-contents">
                <div id="header-float-left">
                    <div id="header-logo">
                        <a href="/" title="Home" id="logo" class="content">
                            <div id="coat-of-arms" alt=""></div>
                            <div class="name">DVLA</div>
                        </a>
                        <div id="header-application-title">
                            <%= yield :header_application_title %>
                        </div>
                    </div>
                    <div id="header-search">
                        <%= yield :header_search %>
                    </div>
                </div>
                <div id="header-float-right">
                    <div id="user-account">
                        <%= yield :header_user_account %>
                    </div>
                </div>
            </div>
        </div>
    </header>

    <%= yield :after_header %>

    <main id="content">
        <div class="container-fluid">
            <%= yield :content %>
        </div>
    </main>
</body>

</html>

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
dvla_internal_frontend_toolkit-1.0.3 app/views/layouts/erb/layout-fluid.html.erb
dvla_internal_frontend_toolkit-1.0.2 app/views/layouts/erb/layout-fluid.html.erb
dvla_internal_frontend_toolkit-1.0.1 app/views/layouts/erb/layout-fluid.html.erb
dvla_internal_frontend_toolkit-0.5.0 app/views/layouts/erb/layout-fluid.html.erb