summaryrefslogtreecommitdiff
path: root/views/pages/index.ejs
blob: 37f828e5770eb98add8aa946c49d43b57c72ce3c (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
31
32
33
34
35
<% include ../partials/header %>
<div class="subtitle">
  <a href="/post">new post</a> |
  <a href="/mail">inbox</a> |
  <a href="/message">message</a> |
  <a href="/profile">profile</a> |
  <a href="/logout">logout</a>
</div>

<div id="content">
  <% include ../partials/threads %>
</div>

<div id="sidebar">
  <div class="bluebox" id="searchbox">
    <b><big>welcome to bucky</big></b>

    <form action="/search" method="get">
      <input type="text" name="query" autofocus>
      <button>SEARCH</button>
    </form>

  </div>

  <span class="lastlog bluebox">
    <script class="template" type="text/html">
      <a href="/profile/{{username}}">{{username}}</a>
      [{{age}}]
    </script>
  </span>

  <% include ../partials/hootbox %>
</div>

<% include ../partials/footer %>