forked from danjharrison/git-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
122 lines (95 loc) · 4.11 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
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
112
113
114
115
116
117
118
119
120
121
122
<!DOCTYPE html>
<!--[if lt IE 9]><html class="no-js ie lt-ie9 " lang="en"><![endif]-->
<!--[if (gte IE 9)|!(IE)]><!--><html class="no-js " lang="en"><!--<![endif]-->
<head>
<meta charset="UTF-8">
<meta http-equiv="cleartype" content="on">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>The Mixd Team</title>
<!--[if IE 9]><!-->
<link rel="stylesheet" href="assets/css/styles.css">
<!--<![endif]-->
<!--[if lte IE 8]>
<link rel="stylesheet" href="assets/css/ie.css" media="screen">
<![endif]-->
</head>
<body class="debug">
<div class="site-wrap">
<header class="header" role="banner">
<a href="#" class="header__logo">
<img alt="Mixd" src="assets/img/mixd-logo.svg" />
</a>
<nav class="header__nav | nav-container" role="navigation">
<ul>
<li><a href="#">Home</a></li>
<li><a href="#">About</a></li>
<li><a href="#">Approach</a></li>
<li><a href="#">Work</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Blog</a></li>
</ul>
</nav>
</header>
<div class="content cf">
<article class="person">
<img src="" alt="" />
<div class="person__content">
<h1 class="person__name">Phil Shackletonne</h1>
<h3 class="person__occupation">Digital Director</h3>
<div class="person__summary">
<p>Cycling extraordinaire and good coffee connoisseur.</p>
<a href="http://twitter.com/limeybloke" class="btn btn--twitter btn--rounded">View Twitter</a>
</div>
</div>
</article>
<article class="person">
<img src="" alt="" />
<div class="person__content">
<h1 class="person__name">Mike Danford</h1>
<h3 class="person__occupation">Creative Director</h3>
<div class="person__summary">
<p>Mixd's official gastronomista, part-time michelin-star pizza and curry chef.</p>
<a href="http://twitter.com/m_danford" class="btn btn--twitter btn--rounded">View Twitter</a>
</div>
</div>
</article>
<article class="person">
<img src="" alt="" />
<div class="person__content">
<h1 class="person__name">Thomas Aaron</h1>
<h3 class="person__occupation">Senior Web Developer</h3>
<div class="person__summary">
<p>Craft beer fanatic and lead guitarist of a folk/mariachi band.</p>
<a href="http://twitter.com/_acthomas" class="btn btn--twitter btn--rounded">View Twitter</a>
</div>
</div>
</article>
<article class="person">
<img src="" alt="" />
<div class="person__content">
<h1 class="person__name">Jason Hobbs</h1>
<h3 class="person__occupation">Senior Web Developer</h3>
<div class="person__summary">
<p>Bona fide Disney princess. Office playlist ruiner.</p>
<a href="http://twitter.com/thecodezombie" class="btn btn--twitter btn--rounded">View Twitter</a>
</div>
</div>
</article>
<article class="person">
<img src="" alt="" />
<div class="person__content">
<h1 class="person__name">Luke Whitehouse</h1>
<h3 class="person__occupation">Web Developer</h3>
<div class="person__summary">
<p>In-house film critic…so long as it's <em>National Treasure</em> or <em>Fast & Furious</em>.</p>
<a href="http://twitter.com/_lukewh" class="btn btn--twitter btn--rounded">View Twitter</a>
</div>
</div>
</article>
</div>
<footer class="footer">
<p>© Copyright 2014 – Work in the Web</p>
</footer>
</div>
</body>
</html>