Skip to content

Commit

Permalink
Update layout--guidance.html
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeremy-Hodge authored Feb 7, 2024
1 parent b9d7b2f commit 3e1bc3e
Showing 1 changed file with 21 additions and 15 deletions.
36 changes: 21 additions & 15 deletions application/templates/layouts/layout--guidance.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ <h1 class="govuk-heading-xl">{{ pageData.pageTitle }}</h1>
{% block content_secondary %}

{% set themes = [
'Guidance for local planning authorities',
'Data specification guidance',
'Publish planning and housing data for England',
'Prepare data to the specifications',
'Other guidance'
] %}

Expand All @@ -46,19 +46,7 @@ <h1 class="govuk-heading-xl">{{ pageData.pageTitle }}</h1>
'current': true if pageData.name == 'home' else false,
},
{
'text': 'Introduction',
'href': sectionPath + 'introduction',
'theme': themes[0],
'current': true if pageData.name == 'introduction' else false,
},
{
'text': 'How to provide data',
'theme': themes[0],
'href': sectionPath + 'how-to-provide-data',
'current': true if pageData.name == 'how-to-provide-data' else false,
},
{
'text': 'Data specifications guidance',
'text': 'Prepare data to the specifications',
'theme': themes[0],
'href': sectionPath + 'specifications/',
'current': true if pageData.name == 'specifications' else false,
Expand Down Expand Up @@ -96,6 +84,24 @@ <h1 class="govuk-heading-xl">{{ pageData.pageTitle }}</h1>
}
]
}
{
'text': 'Publish data on your website',
'theme': themes[0],
'href': sectionPath + 'publish-data-on-your-website',
'current': true if pageData.name == 'publish-data-on-your-website' else false,
},
{
'text': 'Keep your data up to date',
'theme': themes[0],
'href': sectionPath + 'keep-your-data-up-to-date',
'current': true if pageData.name == 'keep-your-data-up-to-date' else false,
},
{
'text': 'Try our new check and publish service',
'theme': themes[0],
'href': sectionPath + 'try-check-publish-service',
'current': true if pageData.name == 'publish-data-on-your-website' else false,
},
]
})
}}
Expand Down

0 comments on commit 3e1bc3e

Please sign in to comment.