-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathindex.html
117 lines (105 loc) · 3.98 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
---
---
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name=viewport content="width=device-width,initial-scale=1.0">
<title>Tate Johnson</title>
<link rel="alternate" type="application/atom+xml" href="{{ "/feed.xml" | relative_url }}">
<link rel="icon" type="image/png" sizes="16x16" href="{{ "/favicon16.png" | relative_url }}">
<link rel="icon" type="image/png" sizes="32x32" href="{{ "/favicon32.png" | relative_url }}">
<link rel="icon" type="image/png" sizes="96x96" href="{{ "/favicon96.png" | relative_url }}">
<link rel="apple-touch-icon" sizes="152x152" href="{{ "/favicon152.png" | relative_url }}">
<link rel="apple-touch-icon" sizes="167x167" href="{{ "/favicon167.png" | relative_url }}">
<link rel="apple-touch-icon" sizes="180x180" href="{{ "/favicon180.png" | relative_url }}">
<meta name="twitter:card" content="summary">
<meta name="twitter:image" content="{{ "/share.png" | absolute_url }}">
<meta name="og:type" content="article">
<meta name="og:url" content="{{ '/' | absolute_url }}">
<meta name="og:title" content="Tate Johnson">
<meta name="og:description" content="Tate Johnson">
<meta name="og:image" content="{{ "/share.png" | absolute_url }}">
<style type="text/css">
html {
background: #222222;
color: #ffffff;
font-family: "Georgia", "Times New Roman", serif;
font-size: 18px;
line-height: 30px;
}
@media only screen and (min-width: 481px) {
html {
font-size: 21px;
line-height: 32px;
}
}
body {
margin: 37px 5%;
}
@media only screen and (min-width: 481px) {
body {
margin: 75px auto;
width: 550px;
}
}
h1 {
background: url("{{ "/lime.png" | relative_url }}") top left;
width: 202px;
height: 202px;
margin: 0 auto 37px auto;
display: block
}
h1:active,
h1:hover {
background-position: bottom left;
}
h1 > span {
display: none;
}
a {
color: #ebffb4;
text-decoration: underline;
}
a:hover,
a:focus,
a:active {
color: #222222;
background: #ebffb4;
text-decoration: none;
}
p,
ul,
.hr {
margin: 0;
margin-bottom: 37px;
}
ul {
padding: 0;
}
ul > li {
margin-left: 23px;
}
.hr {
background: transparent;
border-bottom: 1px solid #444444;
border-top: 1px solid #111111;
}
</style>
</head>
<body>
<h1><span>Tate Johnson</span></h1>
<p>Hey there, my name is Tate Johnson and I'm the CTO at <a href="https://thelookoutway.com">The Lookout Way</a>. I'm also the creator of <a href="https://antennamate.com">Antenna Mate</a> which has been a top paid utility app on the App Store for the last 12+ years.</p>
<p>Earlier I lead iOS development at <a href="https://lifx.com">LIFX</a>, built the foundations of the <a href="https://cloud.lifx.com">LIFX Cloud</a>, and built the LIFX Nest integration. Earlier then that I was a key engineer at <a href="https://www.everydayhero.com">Everyday Hero</a> before the company was acquired by <a href="https://www.blackbaud.com">Blackbaud</a>. Even earlier I was a contract web designer. I hold a Bachelor of Information Technology from <a href="https://www.griffith.edu.au">Griffith University</a>.</p>
<p>I'd love to hear from you. I'm <a href="mailto:[email protected]">[email protected]</a> on email or <a href="https://github.com/tatey">tatey</a> on GitHub.</p>
<div class="hr"></div>
<p>Read my blog posts or subscribe to my <a href="{{ "/feed.xml" | relative_url }}">RSS feed</a>:</p>
<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url | relative_url }}">{{ post.title | smartify }}</a>, {{ post.date | date: "%b %Y" }}
</li>
{% endfor %}
</ul>
</body>
</html>