aboutsummaryrefslogtreecommitdiffstats
path: root/bn_django/templates/frontpage.html
blob: 17f9aac29eb3b11c5fbb1c191d0c04c2b1b890a6 (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
{% 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" />
{{ block.super }}{% endblock %}

{% block path %}{% endblock %}

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

{% block right_stuff %}
<br />
RSS feeds: <br />
{% comment %} &nbsp; - <a href="/journal/rss/latest_entries/"> journal entries</a><br />{% endcomment %}
 &nbsp; - <a href="/journal/rss/latest_links/"> web links</a><br />
 &nbsp; - <a href="http://git.bnewbold.net/?p=bnewnet.git;a=rss;opt=--no-merges"> site code changes</a><br />
<br /><br />
Other sites: <br />
 &nbsp; - <a href="http://web.mit.edu/bnewbold/www"> athena locker</a><br />
 &nbsp; - <a href="http://planet.bnewbold.net"> planet</a><br />
 &nbsp; - <a href="http://equator.memeschemes.com"> equator</a><br />
{% endblock %}

{% block content %}
<div class="notice">
<center><b>This site is still under development!</b></center>
<p /> There are undoubtedly bugs, errors, aesthetic travesties, ommissions, etc. At this point if you find any errors please email me using the link at the bottom of this page!
<p />If you're curious you can track my work in the <a href="/code">code</a> section.  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>
 In early 2008 I returned to <a href="http://mit.edu">MIT</a> to learn some more physics; i'm planning on graduating in spring 2009. I spent 2007 traveling and working in different places across the USA and the world; see some of the <a href="/photos/">photos</a> I took. Hopefully I'll be on the road again soon! <i><a href="/whatsup/">&nbsp;More...</a></i>
<br />

<br />

<h2 class="ruled">Photos!</h2>
{% if latest_photos %}
<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>&nbsp;&nbsp;&nbsp;</td>
{% endfor %}
</tbody></table>
{% else %}
<br/><br />None yet!
{% endif %}

<h2 class="ruled">Knowledge!</h2>
{% if newitems %}
{% include "git_wiki/newitems_table" %}
{% else %}
None yet!
{% endif %}

<h2 class="ruled">Comments!</h2>
{% if latest_comments %}
{% include "newcomments_table" %}
{% else %}
None yet!
{% endif %}

{% endblock %}