-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
86 lines (70 loc) · 2.93 KB
/
index.html
File metadata and controls
86 lines (70 loc) · 2.93 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>buckie's gh-page</title>
<link rel="stylesheet" type="text/css" href="/static/css/fontello.css">
<link rel="stylesheet" type="text/css" media="screen, projection"
href="/static/css/screen.css" />
<link rel="stylesheet" type="text/css" media="screen, projection"
href="/static/css/print.css" />
<!--[if IE]>
<link href="/static/css/ie.css" media="screen, projection" rel="stylesheet" type="text/css" />
<![endif]-->
</head>
<body class="main-body-block">
<div class="navbar navbar-default">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">WM</a>
</div>
<div class="navbar-collapse collapse navbar-responsive-collapse">
<ul class="nav navbar-nav">
<li><a href="/" class="main icon-home">Home</a></li>
<li class="dropdown">
<a href="#" class="dropdown-toggle" data-toggle="dropdown">Posts<b class="caret"></b></a>
<ul class="dropdown-menu">
<li><a href="/making_ghpages/">
Flask & gh-pages
</a>
</li>
</ul>
</li>
</ul>
<ul class="nav navbar-nav navbar-right">
<li>
<a href="/static/resume/cv.html" class="icon-doc-text">Resume</a>
</li>
<li>
<a href="https://github.com/buckie" class="icon-github-octocat">Github Profile</a>
</li>
<li>
<a href="https://github.com/buckie/buckie.github.io">
Source
</a>
</li>
</ul>
</div>
</div>
<div class="container-fluid">
<div class="row">
<div class="col-lg-8 col-lg-offset-2 ">
<p>
This page is still heavily under construction. It was mostly made to help out a friend I've been mentoring in development.
Eventually I'll put up some posts about my haskell based CSV cleaner and my work on a Wavelet based 1-D clustering method
and its applications to financial time series. But for now, my resume will have to do. FYI... pandoc rocks at making resumes!
</p>
</div>
</div>
</div>
<!-- jQuery (necessary for Bootstrap's JavaScript plugins) -->
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<!-- Latest compiled and minified JavaScript -->
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.0/js/bootstrap.min.js"></script>
<script src="/static/js/script.js"></script>
</body>
</html>