Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature: ASB-2262 - See advice notes - homepage #1015

Merged
merged 2 commits into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions packages/forms-web-app/src/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ module.exports = {
'https://infrastructure.planninginspectorate.gov.uk/legislation-and-advice/advice-notes/'
},
govUK: {
adviceNotes:
'https://www.gov.uk/government/collections/national-infrastructure-planning-advice-notes',
administrativeCourtURL: 'https://www.gov.uk/courts-tribunals/administrative-court',
furtherInformationURL: 'https://www.gov.uk/government/organisations/planning-inspectorate'
},
Expand Down
81 changes: 47 additions & 34 deletions packages/forms-web-app/src/pages/detailed-information/view.njk
Original file line number Diff line number Diff line change
Expand Up @@ -4,39 +4,52 @@
{% set mainClasses = "pins-modded-no-padding" %}

{% block content %}
<div class="masthead masthead--full-width masthead--bg-teal">
<div class="masthead__content">
<h1 class="govuk-heading-xl masthead__title">{{ pageHeading }}</h1>
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<p class="masthead__text">
Find further legislation and guidance resources. Information on this page may be useful for those applying to use the service and the general public.
</p>
</div>
</div>
</div>
</div>

<div class="full-width-line full-width-line--bg-blue"></div>
<div class="masthead masthead--full-width masthead--bg-teal">
<div class="masthead__content">
<h1 class="govuk-heading-xl masthead__title">
{{ pageHeading }}
</h1>

<section class="page-section full-width-section full-width-section--bg-lightgrey">
<div class="page-section__content">
<div class="govuk-grid-row">
<div class="govuk-grid-column-one-third">
{{ chevronCard(
'See the process',
detailedInformationUrls.processGuide,
'View the stages an application goes through, from start to finish.'
) }}
</div>
<div class="govuk-grid-column-one-third">
{{ chevronCard(
'How to have your say on a project',
detailedInformationUrls.haveYourSayGuide,
'Find out everything you need to know about sharing your views on a project.'
) }}
</div>
</div>
</div>
</section>
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
<p class="masthead__text">
Find further legislation and guidance resources.
Information on this page may be useful for those applying to use the service and the general public.
</p>
</div>
</div>
</div>
</div>

<div class="full-width-line full-width-line--bg-blue"></div>

<section class="page-section full-width-section full-width-section--bg-lightgrey">
<div class="page-section__content">
<div class="govuk-grid-row">
<div class="govuk-grid-column-one-third">
{{ chevronCard(
'See the process',
detailedInformationUrls.processGuide,
'View the stages an application goes through, from start to finish.'
) }}
</div>

<div class="govuk-grid-column-one-third">
{{ chevronCard(
'How to have your say on a project',
detailedInformationUrls.haveYourSayGuide,
'Find out everything you need to know about sharing your views on a project.'
) }}
</div>

<div class="govuk-grid-column-one-third">
{{ chevronCard(
'See advice notes',
govUK.adviceNotes,
'The Planning Inspectorate has a series of advice notes covering a range of process details.'
) }}
</div>
</div>
</div>
</section>
{% endblock %}
Loading