1b414737c55ef630b6a015fc1c8794e0868e1ff9
[dylansserver.git] / view / index.php
1 <!DOCTYPE html>
2
3 <html>
4 <head>
5 <title><?php echo $this->title ?></title>
6 <link rel="icon" href="/favicon.ico" type="image/png">
7 <link href='/includes/style.css' rel='stylesheet' type='text/css'>
8 <script type='text/javascript' src='/includes/index.js'></script>
9 <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
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>my projects:</h3>
29 </li>
30 <?php
31 foreach ($this->projects as $project => $title) {
32 echo "<li><a class='tab' href='$title'>$title</a></li>";
33 }
34 ?>
35 <li>
36 <h3>things i've worked on:</h3>
37 </li>
38
39 <li><a href=
40 "http://phoenixage.com/">phoenixage.com</a></li>
41
42 <li><a href=
43 "https://duckduckgo.com">duckduckgo.com</a></li>
44
45 <li><a href=
46 "http://tempositions.com">tempositions.com</a></li>
47
48 <li>
49 <h3>things i've made for others:</h3>
50 </li>
51
52 <li><a href=
53 "http://activehamptons.com">activehamptons.com</a></li>
54
55 <li><a href=
56 "http://transfishing.com">transfishing.com</a></li>
57
58 <li>
59 <h3>my repositories:</h3>
60 </li>
61
62 <li><a href=
63 "/git/">git://dylansserver.com</a></li>
64
65 <li><a href=
66 "https://github.com/nospampleasemam">git://github.com/nospampleasemam</a></li>
67
68 <li>
69 <h3>some notes:</h3>
70 </li>
71
72 <li><a href=
73 "/notes/">here</a> [<a href="/notes/rss">rss</a>]</li>
74
75 <li>
76 <h3>my resume:</h3>
77 </li>
78
79 <li>[<a href=
80 "/resume">pdf</a>]</li>
81
82 <li>
83 </li>
84
85 <li>
86 <div id="contact_me">
87 <h1><a href= "mailto:dylan@dylansserver.com">dylan</a></h1>
88 <a href= "mailto:dylan@dylansserver.com">@dylansserver.com</a>
89 <br>
90 [<a href="http://pgp.mit.edu:11371/pks/lookup?op=vindex&amp;search=0xBE93C5C18CD4C40F">pgp key</a>]
91 </div>
92 </li>
93 </ul>
94 </div>
95 <br>
96 <br>
97 <br>
98 <br>
99 <br>
100 &nbsp;
101 </div>
102 </body>
103 </html>