##clinical:error-pages
Error pages for healthcare apps: LoadingPage and PageNotFound and maybe eventually others...
===============================
Installation
meteor add clinical:error-pages
===============================
Usage
Add the pageNotFound
and appLoading
templates to the router config, like so:
1Router.configure({ 2 layoutTemplate: 'appLayout', 3 notFoundTemplate: 'pageNotFound', 4 loadingTemplate: 'appLoading' 5});
===============================