We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A page template combines boilerplate markup and components needed for all pages.
This includes:
NHS design system guidance on page templates
The text was updated successfully, but these errors were encountered:
The current NHS App page template mark-up doesn't use the nhsuk frontend page template classes:
<main id="maincontent" class="webLayout"> <div class="nhsuk-width-container"> [content goes here] </div> </main>
Relying on the last item on the page for bottom spacing:
When the last item on the page has no bottom margin the spacing is incorrect:
Refactor the page template mark-up to use the nhsuk frontend page template classes:
<div class="nhsuk-width-container"> <main class="nhsuk-main-wrapper " id="maincontent" role="main"> <div class="nhsuk-grid-row"> <div class="nhsuk-grid-column-two-thirds"> [content goes here] </div> </div> </main> </div>
Sorry, something went wrong.
No branches or pull requests
A page template combines boilerplate markup and components needed for all pages.
This includes:
NHS design system guidance on page templates
The text was updated successfully, but these errors were encountered: