diff --git a/Web/lib/MJB/Web/Controller/Root.pm b/Web/lib/MJB/Web/Controller/Root.pm index 193c266..7340c52 100644 --- a/Web/lib/MJB/Web/Controller/Root.pm +++ b/Web/lib/MJB/Web/Controller/Root.pm @@ -3,12 +3,19 @@ use Mojo::Base 'Mojolicious::Controller', -signatures; use Try::Tiny; use DateTime; +#== +# GET / | show_homepage +#== sub index ( $c ) { } +#== +# GET /about | show_about +#== sub about ( $c ) { } -sub pricing ( $c ) { } - +#== +# GET /contact | show_contact +#== sub contact ( $c ) { } 1;