diff options
| author | julian laplace <julescarbon@gmail.com> | 2022-10-27 22:03:49 +0200 |
|---|---|---|
| committer | julian laplace <julescarbon@gmail.com> | 2022-10-27 22:03:49 +0200 |
| commit | 35b9318fbf27f4025dd50be2c0a59046dfab3baf (patch) | |
| tree | 6633007600429297e5072f7eace2c3b8150f692f /views/hootstream | |
| parent | a785cfa3d2977e80a7419894e3767e9b8f45fe5b (diff) | |
hootform styling and fixing
Diffstat (limited to 'views/hootstream')
| -rw-r--r-- | views/hootstream/templates.ejs | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/views/hootstream/templates.ejs b/views/hootstream/templates.ejs index 972a308..e3bb612 100644 --- a/views/hootstream/templates.ejs +++ b/views/hootstream/templates.ejs @@ -12,14 +12,19 @@ </script> <script class="threadTemplate" type="text/html"> - <div class="threadTitle {{className}}"> + <div class="threadTitle {{className}}" data-thread="{{thread}}"> <a class="userLink" href="/stream/profile/{{username}}" style="opacity: {{thread_opacity}}"> {{username}} </a> - <a class="avatarLink" href="/stream/profile/{{username}}" style="opacity: {{age_opacity}}"> + <a class="avatarLink" href="/stream/profile/{{username}}" style="opacity: {{thread_opacity}}"> <div class="avatar" title="{{username}}" style="background-image:url({{image}});opacity:{{showAvatar}};"></div> </a> - <div class="text" style="opacity: {{age_opacity}}">{{hoot}}</div> + <div class="text" style="opacity: {{age_opacity}}"> + {{hoot}} + <div class="actions"> + {{actions}} + </div> + </div> <div class="keyword">{{keyword_link}}</div> <div class="commentCount" style="opacity: {{comment_opacity}}">{{comment_count}}</div> <div class="fileCount" style="opacity: {{file_opacity}}">{{file_count}}</div> |
