I'm doing a very simple "portfolio" site of Quil sketches with Reagent. What's the simplest, most idiomatic way to switch between pages depicting different sketches? I was considering using Secretary to route stuff around, but perhaps the easiest thing to do is the most obvious - hook each sketch Reagent element to a different .html file, then have a navigation bar with [:a {:href "/the-sketch-page.html"}] ?
[:a {:href "../the-sketch-page.html"}] maybe
Doesn't seem very Reagent-y, though