2014-04-28 15:42:41 +02:00
|
|
|
<div class="wall-item-container {{$indent}} {{$shiny}} ">
|
|
|
|
<div class="wall-item-item">
|
|
|
|
<div class="wall-item-info">
|
|
|
|
<div class="contact-photo-wrapper">
|
2018-12-14 04:28:12 +01:00
|
|
|
<a href="{{$profile_url}}" target="redir" title="{{$linktitle}}" class="wall-item-photo-link" id="wall-item-photo-link-{{$id}}">
|
|
|
|
<img src="{{$thumb}}" class="contact-photo{{$sparkle}}" id="wall-item-photo-{{$id}}" alt="{{$name}}" />
|
2014-04-28 15:42:41 +02:00
|
|
|
</a>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-actions-author">
|
2018-12-14 04:28:12 +01:00
|
|
|
<a href="{{$profile_url}}" target="redir" title="{{$linktitle}}" class="wall-item-name-link"><span class="wall-item-name{{$sparkle}}">{{$name}}</span></a>
|
2014-04-28 15:42:41 +02:00
|
|
|
<span class="wall-item-ago">
|
2018-12-14 04:28:12 +01:00
|
|
|
{{if $plink}}<a class="link" title="{{$plink.title}}" href="{{$plink.href}}" style="color: #999">{{$ago}}</a>{{else}} {{$ago}} {{/if}}
|
2020-07-27 00:35:02 +02:00
|
|
|
{{if $lock}}<span class="fakelink" style="color: #999" onclick="lockview(event, 'item', {{$id}});">{{$lock}}</span> {{/if}}
|
2014-04-28 15:42:41 +02:00
|
|
|
</span>
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-content">
|
|
|
|
{{if $title}}<h2><a href="{{$plink.href}}">{{$title}}</a></h2>{{/if}}
|
|
|
|
{{$body}}
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-bottom">
|
|
|
|
<div class="wall-item-links">
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-tags">
|
|
|
|
{{foreach $tags as $tag}}
|
2018-12-21 07:15:22 +01:00
|
|
|
<span class='tag'>{{$tag nofilter}}</span>
|
2014-04-28 15:42:41 +02:00
|
|
|
{{/foreach}}
|
|
|
|
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-bottom">
|
|
|
|
<div class="">
|
2018-12-14 04:28:12 +01:00
|
|
|
<!-- {{if $plink}}<a title="{{$plink.title}}" href="{{$plink.href}}"><i class="icon-link icon-large"></i></a>{{/if}} -->
|
|
|
|
{{if $conv}}<a href='{{$conv.href}}' id='context-{{$id}}' title='{{$conv.title}}'><i class="icon-link icon-large"></i></a>{{/if}}
|
2014-04-28 15:42:41 +02:00
|
|
|
</div>
|
|
|
|
<div class="wall-item-actions">
|
|
|
|
|
2016-09-25 17:08:12 +02:00
|
|
|
<div class="wall-item-location">{{$location}} </div>
|
|
|
|
|
2014-04-28 15:42:41 +02:00
|
|
|
<div class="wall-item-actions-social">
|
|
|
|
{{if $star}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<a href="#" id="star-{{$id}}" onclick="dostar({{$id}}); return false;" class="{{$star.classdo}}" title="{{$star.do}}">{{$star.do}}</a>
|
|
|
|
<a href="#" id="unstar-{{$id}}" onclick="dostar({{$id}}); return false;" class="{{$star.classundo}}" title="{{$star.undo}}">{{$star.undo}}</a>
|
|
|
|
<a href="#" id="tagger-{{$id}}" onclick="itemTag({{$id}}); return false;" class="{{$star.classtagger}}" title="{{$star.tagger}}">{{$star.tagger}}</a>
|
2014-04-28 15:42:41 +02:00
|
|
|
{{/if}}
|
2016-09-25 17:08:12 +02:00
|
|
|
|
2014-04-28 15:42:41 +02:00
|
|
|
{{if $vote}}
|
2020-05-27 14:40:00 +02:00
|
|
|
<a href="#" id="like-{{$id}}"{{if $item.responses.like.self}} class="active"{{/if}} title="{{$vote.like.0}}" onclick="dolike({{$id}}, 'like'{{if $item.responses.like.self}}, true{{/if}}); return false">{{$vote.like.1}}</a>
|
|
|
|
<a href="#" id="dislike-{{$id}}"{{if $item.responses.dislike.self}} class="active"{{/if}} title="{{$vote.dislike.0}}" onclick="dolike({{$id}}, 'dislike'{{if $item.responses.dislike.self}}, true{{/if}}); return false">{{$vote.dislike.1}}</a>
|
2014-04-28 15:42:41 +02:00
|
|
|
{{/if}}
|
2016-09-25 17:08:12 +02:00
|
|
|
|
2014-04-28 15:42:41 +02:00
|
|
|
{{if $vote.share}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<a href="#" id="share-{{$id}}" title="{{$vote.share.0}}" onclick="jotShare({{$id}}); return false">{{$vote.share.1}}</a>
|
2016-09-25 17:08:12 +02:00
|
|
|
{{/if}}
|
2014-04-28 15:42:41 +02:00
|
|
|
</div>
|
2016-09-25 17:08:12 +02:00
|
|
|
|
2014-04-28 15:42:41 +02:00
|
|
|
<div class="wall-item-actions-tools">
|
|
|
|
|
|
|
|
{{if $drop.pagedrop}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<input type="checkbox" title="{{$drop.select}}" name="itemselected[]" class="item-select" value="{{$id}}" />
|
2014-04-28 15:42:41 +02:00
|
|
|
{{/if}}
|
|
|
|
{{if $drop.dropping}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<a href="item/drop/{{$id}}" onclick="return confirmDelete();" class="icon delete s16" title="{{$drop.delete}}">{{$drop.delete}}</a>
|
2014-04-28 15:42:41 +02:00
|
|
|
{{/if}}
|
|
|
|
{{if $edpost}}
|
2018-12-14 04:28:12 +01:00
|
|
|
<a class="icon edit s16" href="{{$edpost.0}}" title="{{$edpost.1}}"></a>
|
2014-04-28 15:42:41 +02:00
|
|
|
{{/if}}
|
|
|
|
</div>
|
2016-09-25 17:08:12 +02:00
|
|
|
|
2014-04-28 15:42:41 +02:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<div class="wall-item-bottom">
|
|
|
|
<div class="wall-item-links"></div>
|
2018-12-14 04:35:51 +01:00
|
|
|
<div class="wall-item-like" id="wall-item-like-{{$id}}">{{$like nofilter}}</div>
|
|
|
|
<div class="wall-item-dislike" id="wall-item-dislike-{{$id}}">{{$dislike nofilter}}</div>
|
2014-04-28 15:42:41 +02:00
|
|
|
</div>
|
|
|
|
</div>
|