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 Nov 21, 2023
1 parent 0913939 commit cdcfb65
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions application/templates/layouts/layout--guidance.html
Original file line number Diff line number Diff line change
Expand Up @@ -46,10 +46,22 @@ <h1 class="govuk-heading-xl">{{ pageData.pageTitle }}</h1>
'current': true if pageData.name == 'home' else false,
},
{
'text': 'Introduction',
'href': sectionPath + 'introduction',
'text': 'Who can publish data',
'href': sectionPath + 'who-can-publish-data',
'theme': themes[0],
'current': true if pageData.name == 'introduction' else false,
'current': true if pageData.name == 'who-can-publish-data' else false,
},
{
'text': 'Why publish data',
'href': sectionPath + 'why-publish-data',
'theme': themes[0],
'current': true if pageData.name == 'why-publish-data' else false,
},
{
'text': 'What data we collect',
'href': sectionPath + 'what-data-we-collect',
'theme': themes[0],
'current': true if pageData.name == 'what-data-we-collect' else false,
},
{
'text': 'How to provide data',
Expand Down

0 comments on commit cdcfb65

Please sign in to comment.