19 lines
924 B
Handlebars
19 lines
924 B
Handlebars
<div id='user-stream'>
|
|
{{#collection contentBinding="stream" itemClass="item"}}
|
|
{{#with view.content}}
|
|
<div class='clearfix info'>
|
|
<a href="/users/{{unbound username}}" class='avatar-link'><div class='avatar-wrapper'>{{avatar this imageSize="large" extraClasses="actor" avatarTemplatePath="avatar_template" ignoreTitle="true"}}</div></a>
|
|
<span class='time'>{{date path="created_at" leaveAgo="true"}}</span>
|
|
<a class="title" href="{{unbound postUrl}}">{{unbound title}}</a><br>
|
|
<a class='name' href="/users/{{unbound username}}">{{personalizedName name usernamePath="username"}}</a>
|
|
<span class='type'>{{unbound description}}</span>
|
|
<a class="post-number" href="{{unbound postUrl}}">#{{unbound post_number}}</a>
|
|
</div>
|
|
<p class='excerpt'>
|
|
{{{unbound excerpt}}}
|
|
</p>
|
|
{{/with}}
|
|
{{/collection}}
|
|
</div>
|
|
<div id="user-stream-bottom"></div>
|