summaryrefslogtreecommitdiff
path: root/views/partials/hootbox.ejs
blob: 0f6fce4de64b4c29355af94a43286e867d6452f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<div class="bluebox" id="hootbox">
  <form autocomplete="off">
    <input type="text" name="comment" autocomplete="off">
    <button><%= hoot_text %></button>
    <div class="errors"></div>
  </form>
  <table id="hoots">
    <script class="template" type="text/html">
      <tr>
        <td class="avatar" style="background-image:url(/data/profile/{{username}}.jpg)"><a href="/profile/{{username}}"></a></td>
        <td>
          {{comment}}
        </td>
      </tr>
    </script>
  </table>
</div>