If your application is also intended to serve static files (like images, css or the favicon.ico), the static file dispatching for spludo is right for you.

Create a new folder myapp/static.

Every file you put into the static folder will be matched as route and delivered prefixed with static/. Thus if you put a screen.css with the following contents into the static folder, you'll be able to access it at the path myapp/static/screen.css.

body {
    background-color:#230585;
}

Comments