Phase banner examples
-
# default
{ "tag": { "text": "Alpha" }, "html": "This is a new service - your <a href=\"#\" class=\"govuk-link\">feedback</a> will help us to improve it." }{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} {{ govukPhaseBanner({ "tag": { "text": "Alpha" }, "html": "This is a new service - your <a href=\"#\" class=\"govuk-link\">feedback</a> will help us to improve it." }) }} -
# classes
{ "text": "This is a new service – your feedback will help us to improve it", "classes": "extra-class one-more-class" }{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} {{ govukPhaseBanner({ "text": "This is a new service – your feedback will help us to improve it", "classes": "extra-class one-more-class" }) }} -
# text
-
# html as text
{ "text": "This is a new service - your <a href=\"#\" class=\"govuk-link\">feedback</a> will help us to improve it." }{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} {{ govukPhaseBanner({ "text": "This is a new service - your <a href=\"#\" class=\"govuk-link\">feedback</a> will help us to improve it." }) }} -
# attributes
{ "text": "This is a new service – your feedback will help us to improve it", "attributes": { "first-attribute": "foo", "second-attribute": "bar" } }{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} {{ govukPhaseBanner({ "text": "This is a new service – your feedback will help us to improve it", "attributes": { "first-attribute": "foo", "second-attribute": "bar" } }) }} -
# tag html
{ "text": "This is a new service – your feedback will help us to improve it", "tag": { "html": "<em>Alpha</em>" } }{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} {{ govukPhaseBanner({ "text": "This is a new service – your feedback will help us to improve it", "tag": { "html": "<em>Alpha</em>" } }) }} -
# tag classes
{ "text": "This is a new service – your feedback will help us to improve it", "tag": { "classes": "govuk-tag--grey", "text": "Alpha" } }{% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %} {{ govukPhaseBanner({ "text": "This is a new service – your feedback will help us to improve it", "tag": { "classes": "govuk-tag--grey", "text": "Alpha" } }) }}