!7
html {
new Matches m;
if (swic(uri, "/artist/", m)) ret "Artist page for " + htmlencode(urldecode(m.rest()));
if (swic(uri, "/song/", m)) ret "Song page for " + htmlencode(urldecode(m.rest()));
if (eqic(uri, "/contact")) ret "Contact page";
if (eq(uri, "/")) ret "Home page";
ret serve404();
}