parsav  profile.t at [419d1a1ebe]

File render/profile.t artifact a405db9158 part of check-in 419d1a1ebe


-- vim: ft=terra
local terra 
render_profile(actor: &lib.store.actor)
	var profile = data.view.profile {
		nym = lib.coalesce(actor.nym, actor.handle);
		bio = lib.coalesce(actor.bio, "tall, dark, and mysterious");
		xid = actor.xid;
		avatar = "/no-avatars-yet.png";

		nposts = '0', nfollows = '0';
		nfollowers = '0', nmutuals = '0';
		tweetday = 'novembuary 67th';
	}

	return profile:tostr()
end

return render_profile