-
Notifications
You must be signed in to change notification settings - Fork 5
/
index.html
82 lines (78 loc) · 3.27 KB
/
index.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
70
71
72
73
74
75
76
77
78
79
80
81
82
<!doctype html>
<html>
<head>
<title>#webdesign -- home</title>
<link rel="stylesheet" href="css/main.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/index.js" type="text/javascript"></script>
</head>
<body>
<div id="container">
<div id="header">webdesign</div>
<div id="nav">
<ul>
<li class="active"><a href="/">home</a></li>
<li><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="blurb">
<p><span class="green">is communication</span>, and communication is a group effort. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt. <span class="orange">Talk to us.</span></p>
<br class="clear"/>
</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 id="tracker">
<h1>Recent Issues</h1>
<div class="issue">Nothing in this part is done.</div>
<div class="issue"></div>
<div class="issue"></div>
<div class="issue"></div>
<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>