summaryrefslogtreecommitdiff
path: root/views/pages/index.ejs
blob: 7919344a97cbf0fd700d57bb0106e60073d31dad (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
<% include ../partials/header %>

<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>
  <div class="bluebox">
    <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>
  <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 %>