diff options
author | Mario <mario@mariovavti.com> | 2024-09-18 19:59:33 +0000 |
---|---|---|
committer | Mario <mario@mariovavti.com> | 2024-09-18 19:59:33 +0000 |
commit | a7c51f5d654cca2a3c637006de09836ee3f9dfc4 (patch) | |
tree | 5f31b61efd284816c5f4b4edbf20061b377146e4 | |
parent | 5309c032dbda6f69c2d8f52de1e37a28fa24f6e9 (diff) | |
download | volse-hubzilla-a7c51f5d654cca2a3c637006de09836ee3f9dfc4.tar.gz volse-hubzilla-a7c51f5d654cca2a3c637006de09836ee3f9dfc4.tar.bz2 volse-hubzilla-a7c51f5d654cca2a3c637006de09836ee3f9dfc4.zip |
display title only for toplevel items
-rw-r--r-- | view/tpl/conv_item.tpl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/view/tpl/conv_item.tpl b/view/tpl/conv_item.tpl index 743dedf9a..b3e927d3f 100644 --- a/view/tpl/conv_item.tpl +++ b/view/tpl/conv_item.tpl @@ -18,7 +18,7 @@ {{$item.event}} </div> {{/if}} - {{if $item.title && !$item.event}} + {{if $item.title && $item.toplevel && !$item.event}} <div class="p-2{{if $item.is_new}} bg-primary text-white{{/if}} wall-item-title h3{{if !$item.photo}} rounded-top{{/if}}" id="wall-item-title-{{$item.id}}"> {{if $item.title_tosource}}{{if $item.plink}}<a href="{{$item.plink.href}}" title="{{$item.title}} ({{$item.plink.title}})" rel="nofollow">{{/if}}{{/if}}{{$item.title}}{{if $item.title_tosource}}{{if $item.plink}}</a>{{/if}}{{/if}} </div> |