7.4 Content Page View in a new window
Another variation of the basic page, without a top banner and more content centric
Twig: templates/page.twig
Example
Health risks
Asbestos fibres can pose a risk to health if airborne, as inhalation is the main way that asbestos enters the body. It is estimated that 4,000 Australians die each year of asbestos related diseases – more than double the national road toll.
Why is asbestos dangerous?
The world health organisation says there is no safe level of asbestos exposure. Breathing in asbestos fibres can lead to diseases such as asbestosis, pleural disease, lung cancer and mesothelioma. These diseases can take decades to develop and have no known cure. They can only be managed. Precautions should be taken to minimise exposure to airborne asbestos fibres.
How do you become exposed to asbestos?
Asbestos materials that are in a stable condition and left undisturbed, pose a very low risk. However, risk of exposure occurs if you come into contact with asbestos containing materials that:
Related Information
Markup
<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": "Health risks",
"url": "#"
}
]
} %}
<div class="mt-4 nsw-wysiwyg-content nsw-container p-0">
<h1 class="col-12">Health risks</h1>
<div class="mt-2 col-12 font-weight-normal h3">Asbestos fibres can pose a risk to health if airborne, as inhalation is the main way that asbestos enters the body. It is estimated that 4,000 Australians die each year of asbestos related diseases – more than double the national road toll. </div>
</div>
<div class="mt-4 nsw-wysiwyg-content">
{% include '@asbestos/components/teasers/teaser-large.twig' with {
data: {
"heading": "Protect yourself from health risk",
"copy": "There is no known safe level of exposure to asbestos fibres but you can protect yourself and others from health risks.",
"img": "./images/health-risk-1.png",
"titleModifierClass":"h2 blue-title mb-4",
"contentModifierClass":"col-12 col-md-6 order-2 order-md-first",
"imageModifierClass":"col-12 col-md-6 order-first order-md-2 p-0 ",
"modifier_class":"nsw-container p-0",
"rowModifierClass":"m-0",
"svgUrl":"."
}
} %}
</div>
<div class="nsw-wysiwyg-content nsw-container p-0">
<div class="row mx-0 nsw-container p-0">
<div class="col-12 col-md-8 mt-4">
{% include '@asbestos/components/block/block.twig' with {
data: {
"label":"Why is asbestos dangerous? ",
"content":"The world health organisation says there is no safe level of asbestos exposure.
Breathing in asbestos fibres can lead to diseases such as asbestosis, pleural disease, lung cancer and mesothelioma. These diseases can take decades to develop and have no known cure. They can only be managed. Precautions should be taken to minimise exposure to airborne asbestos fibres. "
}
} %}
</div>
<div class="col-12 col-md-8 mt-4">
{% include '@asbestos/components/block/block.twig' with {
data: {
"label":"How do you become exposed to asbestos? ",
"content":"Asbestos materials that are in a stable condition and left undisturbed, pose a very low risk.
However, risk of exposure occurs if you come into contact with asbestos containing materials that: "
}
} %}
</div>
</div>
<div class="row mt-4 mx-0">
<div class="col-12 col-md-8">
<h3>Related Information</h3>
{% include '@asbestos/components/linked-list/linked-list.twig' with {
"linkList" : [
{
"text": "How to safely manage", "svgUrl":"."
},
{
"text": "How to safely dispose", "svgUrl":"."
}
]
} %}
</div>
</div>
</div>
<div class="">
{% include '@asbestos/components/footer/footer.twig' %}
</div>
</div>