From 5ea9fdd287bf5e550a9790805dc2ca78cc6ba04a Mon Sep 17 00:00:00 2001 From: Peter Kong Date: Fri, 4 Oct 2024 10:17:10 -0400 Subject: [PATCH] add no index to home layout --- services/QuillLMS/app/views/layouts/home.html.erb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/services/QuillLMS/app/views/layouts/home.html.erb b/services/QuillLMS/app/views/layouts/home.html.erb index 4329e465fe7..5d9708c22b2 100644 --- a/services/QuillLMS/app/views/layouts/home.html.erb +++ b/services/QuillLMS/app/views/layouts/home.html.erb @@ -24,6 +24,10 @@ <% if Rails.env.development? %> [DEV] <%= @title %> <%= favicon_link_tag 'favicon-dev.ico' %> + <% elsif Rails.env.staging? %> + [Staging] <%= @title || 'Interactive Writing and Grammar' %> + <%= favicon_link_tag 'favicon-staging.ico' %> + <% else %> <%= @title %> <%= favicon_link_tag 'favicon.ico' %>