diff --git a/Web/lib/MJB/Web.pm b/Web/lib/MJB/Web.pm index b45fa7d..39c0a92 100644 --- a/Web/lib/MJB/Web.pm +++ b/Web/lib/MJB/Web.pm @@ -174,10 +174,11 @@ 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 ( '/contact' )->to( 'Root#contact' )->name('show_contact' ); - $r->get ( '/pricing' )->to( 'Root#pricing' )->name('show_pricing' ); + $r->get ( '/' )->to( 'Root#index' )->name('show_homepage' ); + $r->get ( '/about' )->to( 'Root#about' )->name('show_about' ); + $r->get ( '/contact' )->to( 'Root#contact' )->name('show_contact' ); + $r->get ( '/pricing' )->to( 'Root#pricing' )->name('show_pricing' ); + $r->get ( '/open-source' )->to( 'Root#open_source' )->name('show_open_source' ); # User registration, login, and logout. $r->get ( '/register' )->to( 'Auth#register' )->name('show_register' ); diff --git a/Web/templates/layouts/standard.html.ep b/Web/templates/layouts/standard.html.ep index 5e7fe35..cb64aec 100644 --- a/Web/templates/layouts/standard.html.ep +++ b/Web/templates/layouts/standard.html.ep @@ -123,10 +123,16 @@
MyJekyllBlog is an open-source project. You can find the latest version of the source code, instructions, and documentation at MyJekyllBlog's GitHub