I struggling with a problem for hours now... I want to build a link with values from two sequences.
(doseq [item photoset-name] (prn item ))
(doseq [item-name photoset-id] (prn item-name ))
output:
"AlbumTitel2"
"test"
"AlbumTitel"
"album123"
"speciale"
"neues B5 Album"
"Album Nr 2"
"72157632764328569"
"72157632769231530"
"72157632769092584"
"72157632768156156"
"72157632762740183"
"72157632724688181"
"72157632760876608"
Now I want to build a link like this (for every id/name):
<a href="http://example.com?id=72157632764328569">AlbumTitel2</a>
And it should be a sequence or map... anything I can iterate though.
Does anyone have an idea how to archive this?
Thanks!