vier: threads
This commit is contained in:
parent
9086641fd1
commit
c177a5e5b2
|
@ -1079,15 +1079,13 @@ section {
|
||||||
padding-bottom: 2px;
|
padding-bottom: 2px;
|
||||||
}
|
}
|
||||||
.tag {
|
.tag {
|
||||||
background: url("../../../images/tag_b.png") repeat-x center left;
|
color: rgb(153,153,153);
|
||||||
color: #ffffff;
|
|
||||||
padding-left: 3px;
|
padding-left: 3px;
|
||||||
font-size: 10px;
|
font-size: 10px;
|
||||||
}
|
}
|
||||||
.tag a {
|
.tag a {
|
||||||
padding-right: 8px;
|
padding-right: 8px;
|
||||||
background: url("../../../images/tag.png") no-repeat center right;
|
color: rgb(153,153,153);
|
||||||
color: #ffffff;
|
|
||||||
}
|
}
|
||||||
.wwto {
|
.wwto {
|
||||||
position: absolute !important;
|
position: absolute !important;
|
||||||
|
|
|
@ -2,7 +2,7 @@ $live_update
|
||||||
|
|
||||||
{{ for $threads as $item }}
|
{{ for $threads as $item }}
|
||||||
|
|
||||||
<div id="tread-wrapper-$item.id" class="tread-wrapper {{ if $item.threaded }}threaded{{ endif }}">
|
<div id="tread-wrapper-$item.id" class="tread-wrapper {{ if $item.threaded }}threaded{{ endif }} $item.toplevel">
|
||||||
|
|
||||||
|
|
||||||
{{ if $item.type == tag }}
|
{{ if $item.type == tag }}
|
||||||
|
|
|
@ -60,9 +60,18 @@
|
||||||
<div class="wall-item-links">
|
<div class="wall-item-links">
|
||||||
</div>
|
</div>
|
||||||
<div class="wall-item-tags">
|
<div class="wall-item-tags">
|
||||||
{{ for $item.tags as $tag }}
|
{{ for $item.hashtags as $tag }}
|
||||||
<span class='tag'>$tag</span>
|
<span class='tag'>$tag</span>
|
||||||
{{ endfor }}
|
{{ endfor }}
|
||||||
|
{{ for $item.mentions as $tag }}
|
||||||
|
<span class='mention'>$tag</span>
|
||||||
|
{{ endfor }}
|
||||||
|
{{ for $item.folders as $cat }}
|
||||||
|
<span class='folder'>$cat.name</a>{{if $cat.removeurl}} (<a href="$cat.removeurl" title="$remove">x</a>) {{endif}} </span>
|
||||||
|
{{ endfor }}
|
||||||
|
{{ for $item.categories as $cat }}
|
||||||
|
<span class='category'>$cat.name</a>{{if $cat.removeurl}} (<a href="$cat.removeurl" title="$remove">x</a>) {{endif}} </span>
|
||||||
|
{{ endfor }}
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="wall-item-bottom">
|
<div class="wall-item-bottom">
|
||||||
|
@ -71,7 +80,11 @@
|
||||||
</div>
|
</div>
|
||||||
<div class="wall-item-actions">
|
<div class="wall-item-actions">
|
||||||
<div class="wall-item-actions-author">
|
<div class="wall-item-actions-author">
|
||||||
<a href="$item.profile_url" target="redir" title="$item.linktitle" class="wall-item-name-link"><span class="wall-item-name$item.sparkle">$item.name</span></a> <span class="wall-item-ago">$item.ago</span>
|
<a href="$item.profile_url" target="redir"
|
||||||
|
title="$item.linktitle"
|
||||||
|
class="wall-item-name-link"><span
|
||||||
|
class="wall-item-name$item.sparkle">$item.name</span></a>
|
||||||
|
<span class="wall-item-ago" title="$item.localtime">$item.ago</span>
|
||||||
{{ if $item.owner_url }}<br/>$item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall
|
{{ if $item.owner_url }}<br/>$item.to <a href="$item.owner_url" target="redir" title="$item.olinktitle" class="wall-item-name-link"><span class="wall-item-name$item.osparkle" id="wall-item-ownername-$item.id">$item.owner_name</span></a> $item.vwall
|
||||||
{{ endif }}
|
{{ endif }}
|
||||||
</div>
|
</div>
|
||||||
|
@ -118,14 +131,14 @@
|
||||||
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent==comment }}
|
{{ if $item.threaded }}{{ if $item.comment }}
|
||||||
<div class="wall-item-bottom">
|
<div class="wall-item-bottom">
|
||||||
<div class="wall-item-links"></div>
|
<div class="wall-item-links"></div>
|
||||||
<div class="wall-item-comment-wrapper">
|
<div class="wall-item-comment-wrapper">
|
||||||
$item.comment
|
$item.comment
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
{{ endif }}{{ endif }}{{ endif }}
|
{{ endif }}{{ endif }}
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue