blob: e0fc19c7b4638d7ef7bd23d0197547d383d22980 (
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
|
{% extends "base.html" %}
{% block stylesheets %}
<link rel="openid.server" href="http://www.myopenid.com/server" />
<link rel="openid.delegate" href="http://bnewbold.myopenid.com" />
<meta http-equiv="X-XRDS-Location"
content="http://bnewbold.myopenid.com/xrds" />
<link rel="STYLESHEET" type="text/css" href="/static/style/git_wiki.css" />
{{ block.super }}{% endblock %}
{% block path %}{% endblock %}
{% block title %}A Brave New Bold World!{% endblock %}
{% block right_stuff %}
<br />
RSS feeds: <br />
{% comment %} - <a href="/journal/rss/latest_entries/"> journal entries</a><br />{% endcomment %}
- <a href="/journal/rss/latest_links/"> web links</a><br />
- <a href="http://git.bnewbold.net/?p=bnewnet.git;a=rss;opt=--no-merges"> site code changes</a><br />
<br /><br />
Other sites: <br />
- <a href="http://web.mit.edu/bnewbold/www"> athena locker</a><br />
- <a href="http://planet.bnewbold.net"> planet</a><br />
- <a href="http://equator.memeschemes.com"> equator</a><br />
{% endblock %}
{% block content %}
<center><a href="/photos/detail/520/"><img style="border: none;" src="/static/img/hole_antarctica.png"></a></center>
<br />
<h3>Where am I?</h3>
As of spring 2010 i'm living in Cambridge working at <a href="http://leaflabs.com">LeafLabs</a> building open source electronicshardware. I spent the past year wrapping up at MIT, teaching in the Middle East, and rattling around the east coast.
<i><a href="/whatsup/"> More...</a></i>
<br />
<br />
<h2 class="ruled">Photos!</h2>
{% if latest_galleries %}
Most recently I have shots from:
{% for gallery in latest_galleries %}
<a href="{{gallery.get_absolute_url}}">{{gallery.title}}</a>
{% endfor %}
{% endif %}
{% if latest_photos %}
<br />
<table class="thumbs" width="100%"><tbody><tr>
{% for photo in latest_photos %}
<td class="photo_thumb">
<a href="{{ photo.get_absolute_url }}"><img src="{{ photo.thumburl }}"
alt="{{ photo.title }}" /></a> </td>
{% endfor %}
</tbody></table>
{% else %}
<br/><br />None yet!
{% endif %}
<br />
<br /><br />
{% endblock %}
|