From 108fb2b7dc539d3497e2a191e34c4deb89ac0c74 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 9 Mar 2026 15:59:13 -0500 Subject: [PATCH] fix: add navigation and footer to changelog page Wrapped ChangelogLive content in Layouts.authenticated component to include standard navigation header and footer. --- lib/towerops_web/live/changelog_live.ex | 38 +++++++++++++------------ 1 file changed, 20 insertions(+), 18 deletions(-) diff --git a/lib/towerops_web/live/changelog_live.ex b/lib/towerops_web/live/changelog_live.ex index f737bab6..4f8f7512 100644 --- a/lib/towerops_web/live/changelog_live.ex +++ b/lib/towerops_web/live/changelog_live.ex @@ -11,28 +11,30 @@ defmodule ToweropsWeb.ChangelogLive do @impl true def render(assigns) do ~H""" -
-

What's New

-

Latest updates and improvements to TowerOps.

+ +
+

What's New

+

Latest updates and improvements to TowerOps.

-
-
-
-
- - {Calendar.strftime(entry.date, "%b %d, %Y")} - +
+
+
+
+ + {Calendar.strftime(entry.date, "%b %d, %Y")} + +
+

{entry.title}

+
    +
  • {item}
  • +
-

{entry.title}

-
    -
  • {item}
  • -
-
+ """ end end