-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
61 lines (56 loc) · 2.4 KB
/
index.html
File metadata and controls
61 lines (56 loc) · 2.4 KB
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
<html>
<head>
<link rel="stylesheet" type="text/css" href="style.css" />
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="lib.js"></script>
<script type="text/javascript">
( function( $ ) {
var fpt = '<article class="featured">\
<h3><a href="{0}">{1}</a><span class="tags">{2}</span></h3>\
<p>{3}</p></article>';
function load_grid( item ) {
$.ajax('archive/'+item+'.json').complete( handler( function( e, data ) {
if( !data )
return;
for( index in data ) {
feature = data[index];
$('.featured.'+item+' .grid').append(fpt.format.apply( fpt, feature ));
}
}) );
}
load_grid('projects');
load_grid('links');
load_grid('developers');
})( jQuery );
</script>
</head>
<body>
<div class="main">
<h1>Welcome to dAmnLab!</h1>
<p>
dAmnLab is a group that is based around hacking <a href="http://www.deviantart.com">deviantART</a>
and the chat system available on the website (dAmn). On dAmn, we
are based in the #<a href="http://chat.deviantart.com/chat/Botdom">Botdom</a>
channel. If you need to know something not covered by this website
then come and find is in the channel.
</p>
<div class="featured links">
<h2>Quick Links</h2>
<p>This stuff may come in handy.</p>
<div class="grid">
</div>
</div>
<div class="featured projects">
<h2>Featured Projects</h2>
<p>Here are some great projects created by members of the group.</p>
<div class="grid">
</div>
</div>
<div class="featured developers">
<h2>Developers</h2>
<div class="grid">
</div>
</div>
</div>
</body>
</html>