-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbody.php
65 lines (62 loc) · 3.12 KB
/
body.php
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
<!DOCTYPE html>
<html lang="en">
<head>
<style><?php include 'style/inline.min.css'; ?></style>
<title>James Kurtz</title>
<meta content="minimum-scale=1.0, width=device-width, maximum-scale=5.0" name="viewport">
<meta property="og:site_name" content="James Kurtz's Personal Site" />
<meta property="og:title" content="James Kurtz" />
<meta name="description" property="og:description" content="Someday, this page will be interesting. In the meantime, here are some links and a pretty picture from a recent hike." />
<meta property="og:image:url" content="https://kurtz.es/static/bierstadtOG.jpg" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@jkrrv">
<meta name="twitter:creator" content="@jkrrv">
<meta property="twitter:title" content="James Kurtz" />
<meta property="twitter:description" content="Someday, this page will be interesting. In the meantime, here are some links and a pretty picture from a recent hike." />
<meta property="twitter:image" content="https://kurtz.es/static/bierstadtOG.jpg" />
<meta name="application-name" content="James Kurtz"/>
<meta name="msapplication-TileColor" content="#223659"/>
<meta name="msapplication-starturl" content="/" />
<meta name="msapplication-navbutton-color" content="#223659" />
<meta name="theme-color" content="#223659">
<meta property="og:type" content="profile" />
<?php if ($mode !== 'work') { ?>
<meta property="og:url" content="https://kurtz.es/" />
<?php } else { ?>
<meta property="og:url" content="https://kurtz.es/work" />
<?php } ?>
<meta property="fb:admins" content="590301109">
<meta property="og:profile:first_name" content="James">
<meta property="og:profile:last_name" content="Kurtz">
<meta property="og:profile:gender" content="male">
</head>
<body>
<div>
<?php if ($mode !== 404) { ?>
<span>The personal page of</span>
<h1>James Kurtz.</h1>
<span>Someday, this page will be interesting.</span>
<span>In the meantime, here are some links and a pretty picture from a recent hike.</span>
<?php } else { ?>
<h1>Uhh oh</h1>
<span>Couldn't find the thing you were looking for.</span>
<span>But, here are some links and a pretty picture from a hike last summer.</span>
<?php } ?>
<a href="/github" class="fa-github" title="GitHub"></a>
<a href="/linkedin" class="fa-linkedin" title="LinkedIn"></a>
<?php if ($mode !== 'work') { ?>
<a href="/facebook" class="fa-facebook" title="Facebook"></a>
<?php } ?>
<a href="/twitter" class="fa-twitter" title="Twitter"></a>
<!--<a href="soundcloud" class="fa-soundcloud" title="Soundcloud"></a>-->
<!-- <a href="/availability" class="fa-calendar-check-o" title="Availability"></a>-->
<?php if ($mode !== 'work') { ?>
<a href="mailto:jkrrv@jkrrv.org" class="fa-envelope-o" title="email"></a>
<?php } else { ?>
<a href="mailto:jkurtz@ieee.org" class="fa-envelope-o" title="email"></a>
<?php } ?>
<!-- <a href="/resume" class="fa-file-text" title="Résumé"></a>-->
</div>
<script><?php include 'scripts/inline.min.js'; ?></script>
</body>
</html>