updates and fixes
[dylansserver.git] / view / index.php
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
6 <title><?php echo $this->title ?></title>
7 <link rel="icon" href="/favicon.ico" type="image/png">
8 <link href='/includes/style.css' rel='stylesheet' type='text/css'>
9 <script type='text/javascript' src='/includes/index.js'></script>
10 </head>
11
12 <body onload="return typeof highlight == 'function' ? highlight() : true">
13 <div id="structure">
14 <div id="banner">
15 <a href="<?php echo $this->home_link ?>">
16 <img src="/images/dylansserver.png" alt="dylansserver"></a>
17 </div>
18 <div id="content">
19 <div id='exhibit'>
20 <?php
21 foreach ($this->exhibits as $exhibit) {
22 echo $exhibit;
23 }
24 ?>
25 </div>
26 <ul id="portfolio">
27 <li>
28 <h3>professional work:</h3>
29 </li>
30
31 <li><a href=
32 "https://kabam.com/">kabam.com</a></li>
33
34 <li><a href=
35 "http://phoenixage.com/">phoenixage.com</a></li>
36
37 <li><a href=
38 "https://duckduckgo.com">duckduckgo.com</a></li>
39
40 <li><a href=
41 "http://tempositions.com">tempositions.com</a></li>
42
43 <li><a href=
44 "http://activehamptons.com">activehamptons.com</a></li>
45
46 <li>
47 <h3>personal projects:</h3>
48 </li>
49 <?php
50 foreach ($this->projects as $project => $title) {
51 echo "<li><a class='tab' href='$title'>$title</a></li>";
52 }
53 ?>
54 <li>
55 <h3>code repositories:</h3>
56 </li>
57
58 <li><a href=
59 "/git/">git://dylansserver.com</a></li>
60
61 <li><a href=
62 "https://github.com/nospampleasemam">git://github.com/nospampleasemam</a></li>
63
64 <li>
65 <h3>some notes:</h3>
66 </li>
67
68 <li><a href=
69 "/notes/">here</a> [<a href="/notes/rss">rss</a>]</li>
70
71 <li>
72 <h3>my resume:</h3>
73 </li>
74
75 <li>[<a href=
76 "/resume">pdf</a>]</li>
77
78 <li>
79 </li>
80
81 <li>
82 <div id="contact_me">
83 <h1><a href= "mailto:dylan@dylansserver.com">dylan</a></h1>
84 <a href= "mailto:dylan@dylansserver.com">@dylansserver.com</a>
85 <br>
86 <!-- [<a href="http://pgp.mit.edu:11371/pks/lookup?op=vindex&amp;search=0xBE93C5C18CD4C40F">pgp key</a>] -->
87 <!-- [<a href="https://keybase.io/majuscule/key.asc">pgp key</a>] -->
88 [<a href="/pubkey.pgp.asc">pgp key</a>]
89 </div>
90 </li>
91 </ul>
92 </div>
93 <br>
94 <br>
95 <br>
96 <br>
97 <br>
98 &nbsp;
99 </div>
100 <? include 'analytics.php' ?>
101 </body>
102 </html>