Skip to content
Open
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
15 changes: 14 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,18 @@
## [Unreleased]
## [1.2.0]

## 1.3.0

### Added

New config settings to match gem version 6.5.0:
- headerContainerClasses
- headerClasses
- navigationContainerClasses
- navigationClasses
- footerContainerClasses
- footerClasses

## 1.2.0

### Added
- Added new configuration prompts for `SERVICE_NAME` during initial setup.
Expand Down
13 changes: 13 additions & 0 deletions optional/config/tech-docs.yml.tt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
host: <%= @documentation_url %>

# Header-related options
product_name:
show_govuk_logo: <%= @use_govuk_logo %>
service_name: <%= @service_name %>
service_link: <%= @service_url %>
Expand All @@ -14,6 +15,18 @@ header_links:
Documentation: <%= @documentation_url %>
Support: <%= @service_url %>/support

#These can be used to add custom classes to the GOV.UK header, footer and service navigation components. You can find more detail about these on the component documentation at:
#https://design-system.service.gov.uk/components/header/
#https://design-system.service.gov.uk/components/service-navigation/
#https://design-system.service.gov.uk/components/footer/

headerContainerClasses:
headerClasses:
navigationContainerClasses:
navigationClasses:
footerContainerClasses:
footerClasses:

# Enables search functionality. This indexes pages only and is not recommended for single-page sites.
enable_search: false

Expand Down