summaryrefslogtreecommitdiff
path: root/views/pages/index.ejs
blob: 7b6732ed7224ec0a108e8e64088b0eaa44e94b99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<% include ../partials/header %>

<hr>

<div id="sidebar">
  <div class="bluebox">
    <b><big>welcome to bucky</big></b>
  </div>
  <div class="bluebox" id="hootbox">
    <form>
      <input type="text" name="hoot">
      <button><%= hoot_text %></button>
    </form>
    <table id="hoots">
      <script class="template" type="text/html">
        <tr>
          <td style="background-image:url(//www.carbonpictures.com/bucky/data/profile/.thumb/am.{{username}}.jpg)"><a href="/profile/{{username}}"><div></div></a></td>
          <td>
            {{comment}}
          </td>
        </tr>
      </script>
    </table>
  </div>
</div>

<div id="content">
</div>

<% include ../partials/footer %>