d13cbc387942a65b16f6d975a397f70592904fff
[dylansserver.git] / view / index.php
1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
2 "http://www.w3.org/TR/html4/loose.dtd">
3
4 <html>
5 <head>
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 <meta http-equiv="Content-Type" content="text/html;charset=utf-8">
11 </head>
12
13 <body onload="return typeof highlight == 'function' ? highlight() : true">
14 <div id="structure">
15 <div id="banner">
16 <a href="<?php echo $this->home_link ?>">
17 <img src="/images/dylansserver.png" alt="dylansserver"
18 border="0"></a>
19 </div>
20 <div id="content">
21 <div id='exhibit'>
22 <?php
23 foreach ($this->exhibits as $exhibit) {
24 echo $exhibit;
25 }
26 ?>
27 </div>
28 <ul id="portfolio">
29 <li>
30 <h3>my projects:</h3>
31 </li>
32 <?php
33 foreach ($this->projects as $project => $title) {
34 echo "<li><a class='tab' href='$title'>$title</a></li>";
35 }
36 ?>
37 <li>
38 <h3>things i've worked on:</h3>
39 </li>
40
41 <li><a href=
42 "https://duckduckgo.com">duckduckgo.com</a></li>
43
44 <li><a href=
45 "http://tempositions.com">tempositions.com</a></li>
46
47 <li>
48 <h3>things i've made for others:</h3>
49 </li>
50
51 <li><a href=
52 "http://activehamptons.com">activehamptons.com</a></li>
53
54 <li><a href=
55 "http://transfishing.com">transfishing.com</a></li>
56
57 <li>
58 <h3>my repositories:</h3>
59 </li>
60
61 <li><a href=
62 "/git/">git://dylansserver.com</a></li>
63
64 <li><a href=
65 "https://github.com/nospampleasemam">git://github.com/nospampleasemam</a></li>
66
67 <li>
68 <h3>some notes:</h3>
69 </li>
70
71 <li><a href=
72 "/notes/">here</a> [<a href="/notes/rss">rss</a>]</li>
73
74 <li>
75 <h3>my resume:</h3>
76 </li>
77
78 <li>[<a href=
79 "/resume">pdf</a>]</li>
80
81 <li>
82 </li>
83
84 <li>
85 <div id="contact_me">
86 <h1><a href= "mailto:dylan@dylansserver.com">dylan</a></h1>
87 <a href= "mailto:dylan@dylansserver.com">@dylansserver.com</a>
88 <br>
89 [<a href="http://pgp.mit.edu:11371/pks/lookup?op=vindex&amp;search=0xBE93C5C18CD4C40F">pgp key</a>]
90 </div>
91 </li>
92 </ul>
93 </div>
94 <br>
95 <br>
96 <br>
97 <br>
98 <br>
99 &nbsp;
100 </div>
101 </body>
102 </html>