1. Collections Component Guide
  2. Inverse header
Component

Inverse header

A wrapper to contain header content in white text

This component can be passed a block of template code and will wrap it in a blue header. This is as light-touch as possible and doesn’t attempt to deal with the margins and paddings of its content. White text is enforced on content and would need to be overridden where unwanted. Implemented to accommodate topic and list page headings and breadcrumbs but unopinionated about its contents.

If passing links to the block make sure to add the inverse modifier.

Search for usage of this component on GitHub.

How it looks (preview) (preview all)

Education, Training and Skills

How to call this component

<%= render "govuk_publishing_components/components/inverse_header", {
} do %>
  <!-- example content -->
  <%= render "govuk_publishing_components/components/title", {
    title: "Education, Training and Skills",
    inverse: true
  } %>
  <!-- end of example content -->
<% end %>

Accessibility acceptance criteria

The component must:

  • be used in conjunction with content that renders a text contrast ratio higher than 4.5:1 against the header colour to meet WCAG AA.

Other examples

For full page width (preview)

Used when the header covers the full width of the page, but it’s content is in the grid layout. The left-right padding is removed to make the contents line up with the other items on the page.

Education, Training and Skills

<%= render "govuk_publishing_components/components/inverse_header", {
  full_width: true
} do %>
  <!-- example content -->
  <%= render "govuk_publishing_components/components/title", {
    title: "Education, Training and Skills",
    inverse: true
  } %>
  <!-- end of example content -->
<% end %>

Html publication header (preview)

The inverse header component is used on HTML publications. See example on GOV.UK here

Notice

LN5 0AT, Jackson Homes (Scopwick) Ltd: environmental permit application

Published 22 April 2016

<%= render "govuk_publishing_components/components/inverse_header", {
} do %>
  <!-- example content -->
  <%= render "govuk_publishing_components/components/title", {
    title: "LN5 0AT, Jackson Homes (Scopwick) Ltd: environmental permit application",
    inverse: true,
    context: "Notice",
  } %>
  <p class="publication-header__last-changed">Published 22 April 2016</p>
  <!-- end of example content -->
<% end %>

With breadcrumbs and paragraph (preview)

Schools and academies, further and higher education, apprenticeships and other skills training, student funding, early years.

<%= render "govuk_publishing_components/components/inverse_header", {
  padding_top: false
} do %>
  <!-- example content -->
  <%= render "govuk_publishing_components/components/breadcrumbs", {
    collapse_on_mobile: true,
    breadcrumbs: [
      {
        title: "Section",
        url: "/section"
      },
      {
        title: "Education of disadvantaged children",
        url: "/section/sub-section"
      }
    ],
    inverse: true
  } %>
  <%= render "govuk_publishing_components/components/lead_paragraph", {
    text: "Schools and academies, further and higher education, apprenticeships and other skills training, student funding, early years.",
    inverse: true
  } %>
  <!-- end of example content -->
<% end %>