-
Notifications
You must be signed in to change notification settings - Fork 5
/
logs.html
69 lines (67 loc) · 2.52 KB
/
logs.html
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
65
66
67
68
69
<!doctype html>
<html>
<head>
<title>#webdesign -- logs</title>
<link rel="stylesheet" href="css/main.css" type="text/css">
<link rel="stylesheet" href="css/logs.css" type="text/css">
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js" type="text/javascript"></script>
<script src="/js/formatdate.js" type="text/javascript"></script>
<script src="/js/logging.js" type="text/javascript"></script>
<script src="/js/logs.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="header">webdesign -- logs</div>
<div id="nav">
<ul>
<li><a href="/">home</a></li>
<li class="active"><a href="/logs.html">logs</a></li>
<li><a href="https://github.com/sshirokov/irc.webdesign">github</a></li>
<li><a href="http://wiki.webeddit.com/">wiki</a></li>
</ul>
</div>
<div id="conversation">
<table border="0" cellspacing="5" cellpadding="5" id="log">
<tr class="row">
<td class="stamp">00:00</td>
<td class="nick">jensechu</td>
<td class="message">Omg did you hear that I am
awesome?</td>
</tr>
<tr class="row">
<td class="stamp">00:00</td>
<td class="nick">devhost</td>
<td class="message">OMFG JENSECHU YOU ARE SO AWESOME</td>
</tr>
<tr class="row">
<td class="stamp">00:00</td>
<td class="nick">catfive</td>
<td class="message">girlz on teh intertubez?!1 n0 wai... tits or gtfo</td>
</tr>
<tr class="row">
<td class="stamp">00:00</td>
<td class="nick">adyingbreed</td>
<td class="message">gentlefellows, do let us get back on topic, for our time is brief and there is so very much for me to learn</td>
</tr>
<tr class="row">
<td class="stamp">00:00</td>
<td class="nick">muta</td>
<td class="message">oh come now, you made some very valid points as well, and i may have to re-think my stance on WYSIWYG php editors</td>
</tr>
</table>
<br class="clear">
</div>
</div>
<!-- Google analytics. -->
<script type="text/javascript">
var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
document.write(unescape("%3Cscript src='" + gaJsHost + "google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E"));
</script>
<script type="text/javascript">
try {
var pageTracker = _gat._getTracker("UA-4560398-3");
pageTracker._trackPageview();
} catch(err) {}</script>
<!-- Google analytics end -->
</body>
</html>