Skip to content

Commit

Permalink
Hide navigation bar on terms and conditions page
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJWoodcock committed Oct 1, 2021
1 parent beb530f commit 2b3c146
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -114,12 +114,7 @@ public async Task<ActionResult> Index()
[Route("termsAndConditions/overview")]
public ActionResult TermsAndConditionsOverview()
{
var model = new
{
HideHeaderSignInLink = true
};

return View(model);
return View();
}


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
ViewBag.PageID = "page-terms-and-conditions-overview";
ViewBag.Section = "home";
ViewBag.Title = "Terms and Conditions";
ViewBag.HideNav = true;
Layout = "~/Views/Shared/_Layout_CDN.cshtml";
}
<div class="govuk-grid-row">
Expand Down

0 comments on commit 2b3c146

Please sign in to comment.