Artifact 2d4aa38bec841d482d0f3092da8f44e19ba3e9c91c98d399b0947e587b88b2a1:
- File render/nav.t — part of check-in [5b3a03ad34] at 2020-12-25 03:59:32 on branch trunk — big ol iteration (user: lexi, size: 485) [annotate] [blame] [check-ins using]
-- vim: ft=terra
local terra
render_nav(co: &lib.srv.convo)
var t: lib.str.acc t:init(64)
if co.who ~= nil or co.srv.cfg.pol_sec == lib.srv.secmode.public then
t:lpush('<a href="/">timeline</a>')
end
if co.who ~= nil then
t:lpush('<a href="/compose">compose</a> <a href="/'):push(co.who.xid,0)
t:lpush('">profile</a> <a href="/conf">configure</a> <a href="/logout">log out</a>')
else
t:lpush('<a href="/login">log in</a>')
end
return t:finalize()
end
return render_nav