This page is not created by, affiliated with, or supported by Slack Technologies, Inc.
2016-08-06
Channels
- # alda (3)
- # beginners (109)
- # boot (24)
- # cljsrn (17)
- # clojure (41)
- # clojure-brasil (2)
- # clojure-china (1)
- # clojure-russia (19)
- # clojure-spec (9)
- # clojure-uk (5)
- # clojurescript (44)
- # cloverage (5)
- # core-async (3)
- # css (2)
- # datascript (6)
- # datomic (26)
- # emacs (2)
- # events (10)
- # hoplon (24)
- # lambdaisland (1)
- # om (2)
- # onyx (16)
- # other-languages (10)
- # proto-repl (2)
- # re-frame (14)
- # spacemacs (2)
- # untangled (4)
- # videos (1)
With the example Sente web application you deliver the index.html from your own code, and have code control over the server side routing. Is it possible to do this with an Untangled Client/Server application? All the Untangled applications I have seen have index.html just as a file.
@cjmurphy: Are you saying you want to serve a template (i.e. hiccup, etc) from /
? If so, then yes. We do that in a good bit of the things we are developing.
@mahinshaw: Yes I used hiccup for the index.html from my own routing function gen-main-page
for /
from routing done with Ring. That was when just using Untangled Client. If I could get at the server routes list somehow, with the application now being an Untangled Server, I think that would help.