From 0013d244e0da3f7148ba5d88e36062a47ca776f0 Mon Sep 17 00:00:00 2001 From: Mark Taylor <138604938+mtaylorgds@users.noreply.github.com> Date: Wed, 19 Jul 2023 10:39:46 +0100 Subject: [PATCH] Rename application layout to design_system Rename to "design_system" to make it clear that this is the layout for pages using the GDS design system. --- app/controllers/whats_new_controller.rb | 2 +- .../layouts/{application.html.erb => design_system.html.erb} | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename app/views/layouts/{application.html.erb => design_system.html.erb} (100%) diff --git a/app/controllers/whats_new_controller.rb b/app/controllers/whats_new_controller.rb index 1861d7ae7..439393b90 100644 --- a/app/controllers/whats_new_controller.rb +++ b/app/controllers/whats_new_controller.rb @@ -1,4 +1,4 @@ class WhatsNewController < ApplicationController - layout "application" # using design system + layout "design_system" def index; end end diff --git a/app/views/layouts/application.html.erb b/app/views/layouts/design_system.html.erb similarity index 100% rename from app/views/layouts/application.html.erb rename to app/views/layouts/design_system.html.erb