Skip to content

Commit

Permalink
Merge pull request #27438 from guardian/add-tax-strategy-link-to-footer
Browse files Browse the repository at this point in the history
Add tax strategy links to footers
  • Loading branch information
frederickobrien authored Aug 27, 2024
2 parents 199eb7c + 5add1ce commit 0bf068f
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions common/app/navigation/FooterLinks.scala
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,12 @@ object FooterLinks {
FooterLink("All writers", "/index/contributors", s"${edition} : footer : all contributors")
val digitalNewspaperArchive: FooterLink =
FooterLink("Digital newspaper archive", "https://theguardian.newspapers.com", "digital newspaper archive")
def taxStrategy(edition: String): FooterLink =
FooterLink(
"Tax strategy",
"https://uploads.guim.co.uk/2024/08/27/TAX_STRATEGY_FOR_THE_YEAR_ENDED_31_MARCH_2025.pdf",
s"${edition} : footer : tax strategy",
)
def facebook(edition: String): FooterLink =
FooterLink("Facebook", "https://www.facebook.com/theguardian", s"${edition} : footer : facebook")
def youtube(edition: String): FooterLink =
Expand All @@ -110,6 +116,7 @@ object FooterLinks {
"https://uploads.guim.co.uk/2023/07/25/Modern_Slavery_Statement_GMG_and_Scott_Trust_2023.docx.pdf",
"uk : footer : modern slavery act statement",
),
taxStrategy("uk"),
digitalNewspaperArchive,
facebook("uk"),
youtube("uk"),
Expand All @@ -123,6 +130,7 @@ object FooterLinks {
allTopics("us"),
allWriters("us"),
digitalNewspaperArchive,
taxStrategy("us"),
facebook("us"),
youtube("us"),
instagram("us"),
Expand All @@ -136,6 +144,7 @@ object FooterLinks {
allWriters("au"),
FooterLink("Events", "/guardian-masterclasses/guardian-masterclasses-australia", "au : footer : masterclasses"),
digitalNewspaperArchive,
taxStrategy("au"),
facebook("au"),
youtube("au"),
instagram("au"),
Expand All @@ -148,6 +157,7 @@ object FooterLinks {
allTopics("international"),
allWriters("international"),
digitalNewspaperArchive,
taxStrategy("international"),
facebook("international"),
youtube("international"),
instagram("international"),
Expand Down

0 comments on commit 0bf068f

Please sign in to comment.