Open or Close the menu

Asbestos in NSW

  • 0Overview
  • 1Typography
  • 2Icons
  • 3Forms
  • 4Global components
  • 5Content components
  • 6Grouped components
  • 7Templates

7.6 Product search landing page View in a new window

Landing page for the Product search

Twig: templates/search.twig

Example

Asbestos NSW Logo Asbestos in NSW

Menu

  • Identify asbestos

    Identify asbestos

    Filium morte multavit si sine causa? quae fuerit causa, nollem.

    • How to maintain asbestos?
    • Find asbestos products
    • What is asbestos ?
    • How do I know if its asbestos?
    • How do I manage asbestos?
    • Level 2
    • Level 2
    • Level 2
    • Level 2
  • Removal and Disposal
  • Safety
  • Health risks
  • Who to contact
  • For councils
  1. Home
  2. Identifying asbestos
  3. Search asbestos products

Most popular searches

Back of page

Select a location

Areas where asbestos could be found

Around the home

Home built before 1990 can contain many types of asbestos products

Commercial

Asbestos products and materials in larger commercial buildings, structures and sites

Community infrastructure & spaces

Asbestos products and materials in open spaces

Industrial

Inducstrial areas contain many different types of asbestos

Boats & automotive

Asbestos can be found in older boats and automotive products

Agricultural and horticultural

Asbestos commonly used in farm and horticultural structures


Markup
{% set data = data|default({
  "svgUrl":"."
}) 
%}
<div class="">
    {% include '@asbestos/components/header/header.twig' %}
    {% include '@asbestos/components/navigation/nav-main.twig' %}
    {% include '@asbestos/components/navigation/breadcrumbs.twig' with {
      breadcrumb : [
          {
            "text": "Home",
            "url": "#"
          },
          {
            "text": "Identifying asbestos",
            "url": "#"
          },
          {
            "text": "Search asbestos products",
            "url": "#"
          }
      ]
      
    } %}
    {% include '@asbestos/components/hero-search/hero-search.twig' %}
  <div class="nsw-wysiwyg-content nsw-container p-0">
    <a class="nsw-direction-link pl-3" href="#">
        <img src="{{data.svgUrl}}/images/arrow.svg" class="nsw-icon nsw-icon--rotate-180">
        <span class="nsw-direction-link__text">
          Back <span class="sr-only">of page</span>
        </span>
    </a>
    <h1 class="col-12 mt-3">Select a location</h1>
    <p class="col-12 h3 font-weight-normal">Areas where asbestos could be found</p>
    <div class="mt-3">
        <div class="row m-0">
          <div class="col-md-6 col-lg-4 mb-4">{% include '@asbestos/components/teasers/teaser-card.twig' with { 
            "data" : { titleModifierClass: 'h4 font-weight-bold', heading: 'Around the home', copy: 'Home built before 1990 can contain many types of asbestos products', theme: 'media', img: "./images/search-result-1.png", "svgUrl":"." }
            } %}</div>
          <div class="col-md-6 col-lg-4 mb-4">{% include '@asbestos/components/teasers/teaser-card.twig' with { 
            "data" : { titleModifierClass: 'h4 font-weight-bold', heading: 'Commercial', copy:'Asbestos products and materials in larger commercial buildings, structures and sites', theme: 'media', img: "./images/search-result-2.png", "svgUrl":"." }
            } %}</div>
          <div class="col-md-6 col-lg-4 mb-4">{% include '@asbestos/components/teasers/teaser-card.twig' with { 
            "data" : { titleModifierClass: 'h4 font-weight-bold', heading: 'Community infrastructure & spaces', copy:'Asbestos products and materials in open spaces', theme: 'media', img: "./images/search-result-3.png", "svgUrl":"." }
            } %}</div>
        </div>
        <div class="row m-0">
          <div class="col-md-6 col-lg-4 mb-4">{% include '@asbestos/components/teasers/teaser-card.twig' with { 
            "data" : { titleModifierClass: 'h4 font-weight-bold', heading: 'Industrial', copy: 'Inducstrial areas contain many different types of asbestos', theme: 'media', img: "./images/search-result-1.png", "svgUrl":"." }
            } %}</div>
          <div class="col-md-6 col-lg-4 mb-4">{% include '@asbestos/components/teasers/teaser-card.twig' with { 
            "data" : { titleModifierClass: 'h4 font-weight-bold', heading: 'Boats & automotive', copy:'Asbestos can be found in older boats and automotive products', theme: 'media', img: "./images/search-result-2.png", "svgUrl":"." }
            } %}</div>
          <div class="col-md-6 col-lg-4 mb-4">{% include '@asbestos/components/teasers/teaser-card.twig' with { 
            "data" : { titleModifierClass: 'h4 font-weight-bold', heading: 'Agricultural and horticultural', copy:'Asbestos commonly used in farm and horticultural structures', theme: 'media', img: "./images/search-result-3.png", "svgUrl":"." }
            } %}</div>
        </div>
    </div>
  </div>
  <div class="">
    {% include '@asbestos/components/footer/footer.twig' %}
  </div>
</div>