diaspora/app/assets/templates/single-post-viewer/single-post-content_tpl.jst.hbs
cmrd Senya 6abd0509f9
Use guid instead of id at permalink and in SPV
This changes links from /posts/:id to /posts/:guid where the links are
not clicked very often. ID search is faster than guid search so we can't
change it everywhere, but these links are not very useful for clicking,
but can be used for easier guid look up.

closes #7453
2017-05-16 00:36:43 +02:00

111 lines
3.4 KiB
Handlebars

<div id="head" class="head clearfix">
<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.guid}}">
<time datetime="{{root.created_at}}" title="{{localTime root.created_at}}" />
</a>
{{else}}
<a href="/posts/{{guid}}">
<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>
{{#unless root}}
<div id="single-post-moderation" />
{{/unless}}
</div>
</div>
{{#unless root}}
<div id="single-post-actions" class="col-md-4" />
{{/unless}}
</div>
{{#if location.lat}}
<div class="row">
<div class='near-from'>
{{t "publisher.near_from" location=location.address}}
</div>
<div class="mapContainer small-map"></div>
</div>
{{/if}}
{{#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/{{guid}}">
<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 class="row">
<div id="body" class="body clearfix">
<div id="real-post-content" class="post-content col-md-12">
</div>
</div>
</div>