Radio Log
Added to #homepageTemplate.txt Jake's macro to list stories by title, with date published, with link:
<%navigatorLinks%> <hr size="1"> <% local (s = "", pc = file.getPathChar ()); local (folder); folder = user.radio.prefs.wwwFolder + "stories" + pc; fileloop (f in folder, infinity) { if file.fileFromPath (f) == "index.txt" {continue}; local (adrfile = @user.radio.settings.files.[f]); if defined (adrfile^.upstream.url != "") { s = s + "<a href=\"" + adrfile^.upstream.url + "">"; s = s + adrfile^.title; s = s + "</a>"; s = s + " (" + date.shortString (adrfile^.postTime) + ")"; }; }; return (s) %>
Works fine, but I would prefer same typeface and size as other navigation links. Will have to work on that.
3:18:20 PM
|