-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.html
48 lines (45 loc) · 1.93 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
<!DOCTYPE html>
<html>
<head>
<meta charset=utf-8>
<title>App</title>
<link rel="stylesheet" href="http://twitter.github.com/bootstrap/1.3.0/bootstrap.min.css">
<link rel="stylesheet" href="/application.css" type="text/css" charset="utf-8">
<script src="/application.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript" charset="utf-8">
var jQuery = require("jqueryify");
var exports = this;
jQuery(function(){
var App = require("index");
exports.app = new App({el: $("body")});
});
</script>
</head>
<body>
<div class="container">
<div class="span-one-third">
<ul id="linkspam">
<li><a rel="author" href="https://profiles.google.com/BarnabaTurek"> <img src="http://www.google.com/images/icons/ui/gprofile_button-44.png" width="36" height="36" alt="g+"> </a></li>
<li><a rel="author" href="http://www.reddit.com/user/barnaba/"> <img src="http://www.reddit.com/static/blog_snoo.gif" width="36" height="49" alt="reddit"> </a></li>
<li><a href="http://www.twitter.com/barnex"><img src="http://twitter-badges.s3.amazonaws.com/t_logo-c.png" alt="Follow barnex on Twitter"/></a></li>
<li><a rel="author" href="https://www.beeminder.com/barnaba"> <img src="http://blog.beeminder.com/wp-content/uploads/2011/10/minibee-trans_13.png" style="padding: 4px 4px 3px 3px;" width="29" height="29" alt="beeminder"> </a></li>
</ul>
</div>
<div class="row">
<div class="span-one-third">
<a href="http://github.com/barnaba"><h1 class="centered">Barnaba Turek</h1> </a>
<h2> My projects</h1>
<div id="projects">
<ul id="items">
<img src="Ajax-loader.gif" alt="loading..." />
</ul>
</div>
<h2> Other stuff </h2>
<ul>
<li> My <a href="http://iem.pw.edu.pl/~turekb/cv.pdf">CV</a> (polish) </li>
</ul>
</div>
</div>
</div>
</body>
</html>