<%ifnull sone.name>

<%= Page.ViewSone.Page.TitleWithoutSone|l10n|html>

<%= Page.ViewSone.UnknownSone.Description|l10n|html>
<%else>

<%= Page.ViewSone.Page.TitleWithSone|l10n|insert needle="{sone}" key=sone.niceName|html>

<%= Page.ViewSone.PostList.Title|l10n|insert needle="{sone}" key=sone.niceName|html>

<%if ! sone.isCurrent> <%if sone.isFriend>
<%= Page.ViewSone.UnfollowSone.Text|l10n|html>
<%else>
<%= Page.ViewSone.FollowSone.Text|l10n|html>
<%/if> <%/if>
<%foreach sone.posts post>
<% post.text|html>
<% post.time|date format="MMM d, yyyy, HH:mm:ss">
<%foreach post.replies reply>
<% reply.text|html>
<% reply.time|date format="MMM d, yyyy, HH:mm:ss">
<%/foreach>
<%foreachelse>
<%= Page.ViewSone.PostList.Text.NoPostYet|l10n|html>
<%/foreach>

<%= Page.ViewSone.Following.Title|l10n|html>

<%foreach sone.friends friend> <%first> <%/last> <%foreachelse>
<%= Page.ViewSone.Following.FollowingNone.Text|l10n|html>
<%/foreach>
<%/if>