From 3b9cb01f22579ba25dc7cdbf86088f92f0b183eb Mon Sep 17 00:00:00 2001 From: Manager Bot Date: Mon, 14 Nov 2022 05:04:50 +0000 Subject: [PATCH] Remove pricing page. --- Web/lib/MJB/Web.pm | 1 - Web/templates/layouts/standard.html.ep | 8 --- Web/templates/root/pricing.html.ep | 73 -------------------------- 3 files changed, 82 deletions(-) delete mode 100644 Web/templates/root/pricing.html.ep diff --git a/Web/lib/MJB/Web.pm b/Web/lib/MJB/Web.pm index a505231..cfefab2 100644 --- a/Web/lib/MJB/Web.pm +++ b/Web/lib/MJB/Web.pm @@ -145,7 +145,6 @@ sub startup ($self) { # General Informational Pages $r->get ( '/' )->to( 'Root#index' )->name('show_homepage' ); $r->get ( '/about' )->to( 'Root#about' )->name('show_about' ); - $r->get ( '/pricing' )->to( 'Root#pricing' )->name('show_pricing' ); $r->get ( '/contact' )->to( 'Root#contact' )->name('show_contact' ); # User registration, login, and logout. diff --git a/Web/templates/layouts/standard.html.ep b/Web/templates/layouts/standard.html.ep index 2563c3c..1479bf5 100644 --- a/Web/templates/layouts/standard.html.ep +++ b/Web/templates/layouts/standard.html.ep @@ -95,14 +95,6 @@ About - % if ( ! $c->stash->{person} ) { - - % }