diff options
author | zotlabs <mike@macgirvin.com> | 2017-10-22 19:32:08 -0700 |
---|---|---|
committer | zotlabs <mike@macgirvin.com> | 2017-10-22 19:32:08 -0700 |
commit | c49eec71f0995cd75be99a64a4dde398f9f0241b (patch) | |
tree | 06e29769c32460299d9c73794028e657e362b6e2 /view/tpl/notify.tpl | |
parent | cdb1bc9be6fbc09caff62c0153386cc58a2bfbd9 (diff) | |
parent | b58bf75f21d15ac440bb3a90edb29afac9eb64ba (diff) | |
download | volse-hubzilla-c49eec71f0995cd75be99a64a4dde398f9f0241b.tar.gz volse-hubzilla-c49eec71f0995cd75be99a64a4dde398f9f0241b.tar.bz2 volse-hubzilla-c49eec71f0995cd75be99a64a4dde398f9f0241b.zip |
Merge branch 'dev' of https://github.com/redmatrix/hubzilla into dev_merge
Diffstat (limited to 'view/tpl/notify.tpl')
-rwxr-xr-x | view/tpl/notify.tpl | 11 |
1 files changed, 9 insertions, 2 deletions
diff --git a/view/tpl/notify.tpl b/view/tpl/notify.tpl index ae6e160b1..b5bccc8a4 100755 --- a/view/tpl/notify.tpl +++ b/view/tpl/notify.tpl @@ -1,3 +1,10 @@ -<div class="mb-2 notif-item"> - <a href="{{$item_link}}"><img src="{{$item_image}}" class="menu-img-1">{{$item_text}} <span class="notif-when">{{$item_when}}</span></a> +<div class="mb-4 notif-item"> + {{if ! $item_seen}} + <span class="float-right badge badge-pill badge-success text-uppercase">{{$new}}</span> + {{/if}} + <a href="{{$item_link}}"> + <img src="{{$item_image}}" class="menu-img-3"> + <span class="{{if $item_seen}}text-muted{{/if}}">{{$item_text}}</span><br> + <span class="dropdown-sub-text">{{$item_when}}</span> + </a> </div> |