quil

reefersleep 2016-05-06T20:38:29.000021Z

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"}] ?

reefersleep 2016-05-06T20:39:27.000022Z

[:a {:href "../the-sketch-page.html"}] maybe

reefersleep 2016-05-06T20:42:43.000023Z

Doesn't seem very Reagent-y, though