Back link
A link used to help users get back, useful when not using other navigation such as breadcrumbs
How it looks (preview) (preview all)
How to call this component
<%= render "govuk_publishing_components/components/back_link", {
href: "#"
} %>
GOV.UK Design System
This component incorporates components from the GOV.UK Design System:
Accessibility acceptance criteria
- has a touch area easy for users to touch
Links in the component must:
- accept focus
- be focusable with a keyboard
- be usable with a keyboard
- indicate when they have focus
- change in appearance when touched (in the touch-down state)
- change in appearance when hovered
- be usable with touch
- be usable with voice commands
- have visible text
- have meaningful text
Other examples
Standard options
This component uses the component wrapper helper. It accepts the following options and applies them to the parent element of the component. See the component wrapper helper documentation for more detail.
id
- accepts a string for the element ID attributedata_attributes
- accepts a hash of data attributesaria
- accepts a hash of aria attributesclasses
- accepts a space separated string of classes, these should not be used for styling and must be prefixed withjs-
role
- accepts a space separated string of roleslang
- accepts a language attribute valueopen
- accepts an open attribute value (true or false)hidden
- accepts an empty string, ‘hidden’, or ‘until-found’tabindex
- accepts an integer. The integer can also be passed as a string.dir
- accepts ‘rtl’, ‘ltr’, or ‘auto’.
Custom text (preview)
<%= render "govuk_publishing_components/components/back_link", {
text: "Back to document list",
href: "#"
} %>
Without ga4 tracking (preview)
Disables GA4 tracking on the component. Tracking is enabled by default. This adds a data module and data-attributes with JSON data. See the ga4-link-tracker documentation for more information.
<%= render "govuk_publishing_components/components/back_link", {
href: "#",
disable_ga4: true
} %>