Skip to main content

Phase banner examples

  • # default

    This is a new service - your feedback will help us to improve it.

    {
      "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

    This is a new service – your feedback will help us to improve it

    {
      "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

    This is a new service – your feedback will help us to improve it

    {
      "text": "This is a new service – your feedback will help us to improve it"
    }
    
    {% from "govuk/components/phase-banner/macro.njk" import govukPhaseBanner %}
    
    {{ govukPhaseBanner({
      "text": "This is a new service – your feedback will help us to improve it"
    }) }}
            
  • # html as text

    This is a new service - your <a href="#" class="govuk-link">feedback</a> will help us to improve it.

    {
      "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

    This is a new service – your feedback will help us to improve it

    {
      "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

    This is a new service – your feedback will help us to improve it

    {
      "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

    This is a new service – your feedback will help us to improve it

    {
      "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"
      }
    }) }}