blob: 070d1ffb77906fe3c341f3ab7949c51467524dbb (
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
<% include ../partials/header %>
<hr>
<div id="sidebar">
<div class="bluebox">
<b><big>welcome to bucky</big></b>
</div>
<div class="bluebox" id="searchbox">
<form>
<input type="text" name="search">
<button>SEARCH</button>
</form>
</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">
<table class="threads">
<script class="template" type="text/html">
<tr>
<td>
<a href="/profile/{{username}}">{{username}}</a>
{{privacy_dot}}
</td>
<td class="{{color}}">
<a href="/details/{{id}}">{{title}}</a>
</td>
<td class="{{age_class}}">
{{age}}
</td>
<td class="{{views_class}}">
{{views}}
</td>
<td class="{{comments_class}}">
{{comments}}
</td>
<td class="{{show_files}}">
<span class="{{size_class}}">{{size}}</span>
in
<span class="{{files_class}}">{{files}}</span>
</td>
</tr>
</script>
</table>
</div>
<% include ../partials/footer %>
|