blob: 06a084cbacda300c79ef8903d3a8dbd20932bc14 (
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
36
37
38
39
40
41
|
<% 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>
<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 %>
|