-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
111 lines (98 loc) · 5.66 KB
/
index.html
File metadata and controls
111 lines (98 loc) · 5.66 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
---
layout: default
title: Matthew Cobbs, Detroit Web Developer
---
<!-- start .hero-unit -->
<div class="hero-unit">
<h1>Matthew Cobbs</h1>
<p>Matthew Cobbs is a 31-year-old web developer from Detroit. As both an in-house and freelance developer, he has several years of experience with planning, designing, developing, and maintaining websites. Matthew loves sushi, Almodovar, <em data-toggle="tooltip" title="Cormac McCarthy, Stephen King, Jack Kerouac, Jon Krakauer, Jane Austen…">good</em> fiction, and JavaScript. He is <a href="#freelance" data-toggle="modal">available for freelance</a>.</p>
<div>
<div class="btn-group btn-contacts-wired hidden-phone hidden-tablet">
<a href="mailto:draeton@gmail.com" class="btn btn-success">Email</a>
<a href="http://github.com/draeton/" class="btn btn-primary">Github</a>
<a href="http://www.linkedin.com/in/matthewcobbs/" class="btn btn-primary">LinkedIn</a>
<a href="http://stackoverflow.com/users/230483/draeton" class="btn btn-info">Stack Overflow</a>
<a href="http://twitter.com/draeton/" class="btn btn-info">Twitter</a>
<a href="http://draeton.tumblr.com/" class="btn btn-info">Tumblr</a>
<a href="http://behance.com/draeton" class="btn btn-info">Behance</a>
</div>
</div>
<div>
<div class="btn-group btn-contacts-mobile hidden-desktop">
<a href="mailto:draeton@gmail.com" class="btn" title="Email"><i class="contacts contacts-gmail"></i></a>
<a href="http://github.com/draeton/" class="btn" title="Github"><i class="contacts contacts-github"></i></a>
<a href="http://www.linkedin.com/in/matthewcobbs/" class="btn" title="LinkedIn"><i class="contacts contacts-linkedin"></i></a>
<a href="http://stackoverflow.com/users/230483/draeton" class="btn" title="Stack Overflow"><i class="contacts contacts-stackoverflow"></i></a>
<a href="http://twitter.com/draeton/" class="btn" title="Twitter"><i class="contacts contacts-twitter"></i></a>
<a href="http://draeton.tumblr.com/" class="btn" title="Tumblr"><i class="contacts contacts-tumblr"></i></a>
<a href="http://behance.com/draeton" class="btn" title="Behance"><i class="contacts contacts-behance"></i></a>
</div>
</div>
</div>
<!-- end .hero-unit -->
<div class="container-fluid">
<div class="row-fluid">
<section id="osprojects" class="span6">
<h3>Open Source Projects</h3>
<h4><i class="icon-briefcase"></i> <a href="/stitches">Stitches</a> <span class="label label-success">New Version</span><br/>
<small>An HTML5 sprite generator.</small></h4>
<h4><i class="icon-briefcase"></i> <a href="/lockdown">Lockdown</a><br/>
<small>Obfuscates code snippets by writing them to the canvas.</small></h4>
<h4><i class="icon-briefcase"></i> <a href="/tanchor">Tanchor</a><br/>
<small>The (anchor) URL parsing library.</small></h4>
<h4><i class="icon-briefcase"></i> <a href="/deeplink">Deeplink</a><br/>
<small>Easy-peasy deeplinking manager.</small></h4>
</section>
<section id="blogposts" class="span6">
<h3>Posts <a href="/archives.html" class="btn btn-mini btn-primary">Read all »</a></h3>
{% for post in site.posts limit:6 %}
<h5><a href="{{ post.url }}"
{% if post.teaser %}
data-toggle="tooltip" data-placement="top" title="{{ post.teaser }}"
{% endif %}
>{{ post.title }}</a> <small>{{ post.date | date_to_string }}</small></h5>
{% endfor %}
</section>
</div>
</div>
<!-- start section -->
<section id="comments">
<div class="fb-comments" data-href="http://draeton.github.com/" data-num-posts="10" data-width="940"></div>
</section>
<!-- end section -->
<!-- start modal -->
<div id="freelance" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="freelanceTitle" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="freelanceTitle">Submit a project</h3>
</div>
<div class="modal-body">
<p>Need help? <span class="muted">(Mind you, freelance doesn’t mean free…)</span></p>
<form class="form-horizontal" action="mailto:draeton@gmail.com" method="get">
<input type="hidden" name="subject" value="draeton.github.com : projects"/>
<div class="control-group">
<label class="control-label" for="inputName">Name</label>
<div class="controls">
<input type="text" id="inputName" required placeholder="Full Name">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputEmail">Email</label>
<div class="controls">
<input type="text" id="inputEmail" required placeholder="Email">
</div>
</div>
<div class="control-group">
<label class="control-label" for="inputDescription">Project</label>
<div class="controls">
<textarea name="body" rows="10" id="inputDescription" required placeholder="Tell me something about your project"></textarea>
</div>
</div>
</form>
</div>
<div class="modal-footer">
<button class="btn" data-dismiss="modal" aria-hidden="true">Close</button>
<button id="freelanceSend" class="btn btn-primary">Send</button>
</div>
</div>
<!-- end modal -->