diaspora/app/assets/templates/single-post-viewer/single-post-content_tpl.jst.hbs
2015-07-03 15:31:29 +02:00

102 lines
3.2 KiB
Handlebars

<div id="head" class="row">
<div class="col-md-12">
<div class="row">
<div id="post-info" class="col-md-8">
<div class="img pull-left">
{{#if root}}
{{#linkToAuthor root.author}}
{{{personImage this "medium"}}}
{{/linkToAuthor}}
{{else}}
{{#linkToAuthor author}}
{{{personImage this "medium"}}}
{{/linkToAuthor}}
{{/if}}
</div>
<div class="bd">
<span class="author">
{{#if root}}
{{#linkToAuthor root.author}}
{{name}}
{{/linkToAuthor}}
{{else}}
{{#linkToAuthor author}}
{{name}}
{{/linkToAuthor}}
{{/if}}
</span>
<div class="info">
{{#if public}}
<span class="post_scope" title="{{t "stream.public"}}">
<i class="entypo-globe small"></i>
</span>
{{else}}
<span class="post_scope" title="{{t "stream.limited"}}">
<i class="entypo-lock small"></i>
</span>
{{/if}}
<span class="post-time">
{{#if root}}
<a href="/posts/{{root.id}}">
<time datetime="{{root.created_at}}" title="{{localTime root.created_at}}" />
</a>
{{else}}
<a href="/posts/{{id}}">
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
</a>
{{/if}}
</span>
{{#if root}}
{{#if root.provider_display_name}}
{{t "stream.via" provider=root.provider_display_name}}
{{/if}}
{{else}}
{{#if provider_display_name}}
{{t "stream.via" provider=provider_display_name}}
{{/if}}
{{/if}}
<div class="status-message-location" />
</div>
{{#unless root}}
<div id="single-post-moderation" />
{{/unless}}
</div>
</div>
{{#unless root}}
<div id="single-post-actions" class="col-md-4" />
{{/unless}}
</div>
{{#if root}}
<div class="row reshare">
<div class="col-md-8" id="reshare-info">
<i class="entypo-reshare small pull-left"></i>
<div class="img pull-left">
{{#linkToAuthor author}}
{{{personImage this "small"}}}
{{/linkToAuthor}}
</div>
<span class="author">
{{#linkToAuthor author}}
{{name}}
{{/linkToAuthor}}
</span>
<div class="post-context">
<span class="post-time">
<a href="/posts/{{id}}">
<time datetime="{{created_at}}" title="{{localTime created_at}}" />
</a>
</span>
<span id="single-post-moderation" />
</div>
</div>
<div id="single-post-actions" class="col-md-4" />
</div>
{{/if}}
</div>
</div>
<div id="body" class="row">
<div id="real-post-content" class="post-content col-md-12">
</div>
</div>