summaryrefslogtreecommitdiffstats
path: root/bn_django/templates/frontpage.html
blob: 9dacccdef1a3cffead96d90acd34b8553228151d (plain)
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
{% extends "base.html" %}

{% block path %}{% endblock %}

{% block title %}A Brave New Bold World!{% endblock %}

{% block right_stuff %}
<br />
Other sites: <br />
 &nbsp; - <a href="http://web.mit.edu/bnewbold/www"> athena locker</a><br />
 &nbsp; - <a href="http://git.bryannewbold.com"> git repository</a>
{% endblock %}

{% block content %}
<div class="notice">
<center><b>This site is under active development!</b></center>
<p /> There are undoubtedly bugs, errors, aesthetic travesties, ommissions, etc (notably the <a href="/knowledge">knowledge</a> section isn't anything yet).
If you're curious you can track my work in the <a href="/code">code</a> section.
<p />In the meanwhile you can get your bryan newbold fix at my <a href="http://web.mit.edu/bnewbold/www">old site</a>.
</div>
 <h3>Where am I?</h3>
For 2007 i'm taking a year break from <a href="http://web.mit.edu">MIT</a>...
<!--
<div class="righty_content">
<b> Are you going to Burning Man? Let me know...</b>
</div>
-->

as of February i'm living in Seattle working at <a href="http://azalea.com/AboutUs">Azalea Software</a> doing tech work. Starting in mid-May i'll be working at the Moss Landing Marine Labs in California, followed in October by field work in Antartica. I will be back at MIT for the spring 2008 semester.
<hr />


<div class="right_stuff">
For more recent content see the <a href="/timeline/">timeline</a>
</div>


<div class="col_right">
<div class="col_title">Latest knowledge</div>
{% if latest_knowledge %}
{% else %}
None yet!
<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />
{% endif %}
</div>

<div class="col_center">
<div class="col_title">Latest comments</div>
{% if latest_comments %}
{% else %}
None yet!
<br /><br /> <br /> <br /> 
<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />
{% endif %}
</div>

<div class="col_left">
<div class="col_title">Latest photos</div>
{% if latest_photos %}
<div class="centerize">
{% for photo in latest_photos %}
<a href="{{ photo.get_absolute_url }}"><img src="{{ photo.thumburl }}" /></a>
<br />
{% endfor %}
</div>
{% else %}
<br/><br />None yet!
<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />
{% endif %}
</div>
<br /> <br /> <br /> <br />
<br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br /> <br />
{% endblock %}