diff options
Diffstat (limited to 'bn_django/templates')
-rw-r--r-- | bn_django/templates/.about.html.swp | bin | 0 -> 12288 bytes | |||
-rw-r--r-- | bn_django/templates/about.html | 31 | ||||
-rw-r--r-- | bn_django/templates/base.html | 51 | ||||
-rw-r--r-- | bn_django/templates/copyright.html | 12 | ||||
-rw-r--r-- | bn_django/templates/credits.html | 19 | ||||
-rw-r--r-- | bn_django/templates/flatpages/default.html | 7 | ||||
-rw-r--r-- | bn_django/templates/frontpage.html | 31 | ||||
-rw-r--r-- | bn_django/templates/static/directory_index.html | 13 |
8 files changed, 164 insertions, 0 deletions
diff --git a/bn_django/templates/.about.html.swp b/bn_django/templates/.about.html.swp Binary files differnew file mode 100644 index 0000000..40f88fd --- /dev/null +++ b/bn_django/templates/.about.html.swp diff --git a/bn_django/templates/about.html b/bn_django/templates/about.html new file mode 100644 index 0000000..eb03970 --- /dev/null +++ b/bn_django/templates/about.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% block path %}{% endblock %} + +{% block title %}About bryannewbold.com{% endblock %} + +{% block right_stuff %} +{% endblock %} + +{% block content %} +<p /> +<div class="lefty_content"> + <img src="/static/img/orange_small.jpg" /> + <br /> + <div class="content_caption">the perp</div> +</div> +This website is the web presence of <a href="k/BryanNewbold">Bryan Newbold</a>. It serves as a: +<dl> + <dt /><a href="/knowledge">brain dump</a> + <dd /> so I won't forget + <dt /><a href="/photos">photo gallery</a> + <dt /><a href="/code">browsable code repository</a> + <dd /> so people (including myself!) don't have to rewrite + <dt />home for other projects + <dd /> like... mmmmm + <dt />waste of time + <dd /> (most importantly!) +</dl> +<p /> +If you're curious about the technology that runs the site, see the <a href="/credits">credits</a>. +{% endblock %} diff --git a/bn_django/templates/base.html b/bn_django/templates/base.html new file mode 100644 index 0000000..a87d0a5 --- /dev/null +++ b/bn_django/templates/base.html @@ -0,0 +1,51 @@ +<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" + "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> +<html xmlns="http://www.w3.org/1999/xhtml"> +<head> +<link rel="STYLESHEET" type="text/css" href="style/default.css"> +<link rel="STYLESHEET" type="text/css" href="/style/default.css"> +<title>bryannewbold.com</title> +</head> +<body> +<div id="top_bar"> + <div id="top_bar_content"> + <span class="lefty"><a href="/">bryannewbold.com</a></span> + <span class="righty"><a href="/knowledge">knowledge</a> + <a href="/photos">photos</a> + <a href="/code">code</a> + <a href="/projects">projects</a> + </div> +</div> +<div class="content" id="main_title"> +<span class="path"> +{% block path %}{% endblock %} +</span> +<h1>{% block title %}Hey Hey Hey!{% endblock %}</h1> +<div class="right_stuff"> +{% block right_stuff %} + +hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey hey +hey hey hey +{% endblock %} +</div> +</div> + + +<div class="content" id="main_content"> +{% block content %} +Here lies content! +{% endblock %} +</div> +<div class="content_footer" id="footer" name="footer"> +<b> +<a href="/">home</a> +<a href="/about">about</a> +<a href="/credits">credits</a> +<a href="mailto:webmeisterATbryannewbold.com">email the webmaster</a> +<a href="http://web.mit.edu/">hosted by MIT</a> +</b> +<br /> +produced in 2007 by <a href="/k/BryanNewbold">bryan newbold</a>, <a href="/copyright">all rights ignored</a> +</div> +</body> +</html> diff --git a/bn_django/templates/copyright.html b/bn_django/templates/copyright.html new file mode 100644 index 0000000..142cdc6 --- /dev/null +++ b/bn_django/templates/copyright.html @@ -0,0 +1,12 @@ +{% extends "base.html" %} + +{% block title %}Fuck Copyrights{% endblock %} + +{% block right_stuff %} +{% endblock %} + +{% block content %} +<p />I'm not a big fan of copyrights or licensing. Feel free to use the content and code from this website however you please. I would appreciate attribution or at least letting me know if you're doing something cool, but it's not required. +<p />If I had to chose a licence it would probably be MIT or BSD style. +<p />I don't think i've violated any other person's rights, but if you think something is a copied and/or unattributed drop a dime! +{% endblock %} diff --git a/bn_django/templates/credits.html b/bn_django/templates/credits.html new file mode 100644 index 0000000..b96d2a9 --- /dev/null +++ b/bn_django/templates/credits.html @@ -0,0 +1,19 @@ +{% extends "base.html" %} + +{% block title %}Software credits{% endblock %} + +{% block right_stuff %} +{% endblock %} + +{% block content %} +This site uses a variety of delicious software! +<h3>operating system</h3> +<p />It's <a href="http://freebsd.org">freeBSD</a> under the hood when not hosted elsewhere. +<h3>web framework</h3> +<p />The site is powered by the <a href="http://djangoproject.com/">django</a> toolkit (which runs on <a href="http://python.org">python</a>). +<p />I use the <a href="http://www.carcosa.net/jason/software/django/stockphoto/">stockphoto</a> app written by Jason McBrayer for the photos section. +<h3>text editor</h3> +<p /><a href="http://vim.org">vim</a>! fuck emacs! +<h3>versioning system</h3> +<p />I use git as a revisioning system for the <a href="knowledge">knowledge wiki</a> and my <a href="code">software</a> (including this site!). +{% endblock %} diff --git a/bn_django/templates/flatpages/default.html b/bn_django/templates/flatpages/default.html new file mode 100644 index 0000000..49c773a --- /dev/null +++ b/bn_django/templates/flatpages/default.html @@ -0,0 +1,7 @@ +{% extends "base.html" %} + +{% block title %}{{ flatpage.title }}{% endblock %} + +{% block content %} +{{ flatpage.content }} +{% endblock %} diff --git a/bn_django/templates/frontpage.html b/bn_django/templates/frontpage.html new file mode 100644 index 0000000..47a55dd --- /dev/null +++ b/bn_django/templates/frontpage.html @@ -0,0 +1,31 @@ +{% extends "base.html" %} + +{% block path %}{% endblock %} + +{% block title %}Welcome to a brave new bold world!{% endblock %} + +{% block right_stuff %} +Other sites: : : : : : : : : : : : : : +<ul> + <li /><a href="http://web.mit.edu/bnewbold/www">athena locker</a> +</ul> +{% endblock %} + +{% block content %} + There will be more forthcoming ... + There will be more stuff forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + There will be more forthcoming ... + + +{% endblock %} diff --git a/bn_django/templates/static/directory_index.html b/bn_django/templates/static/directory_index.html new file mode 100644 index 0000000..6df279d --- /dev/null +++ b/bn_django/templates/static/directory_index.html @@ -0,0 +1,13 @@ +{% extends "base.html" %} + +{% block title %} +<h1>Index of {{ directory }}</h1> +{% endblock %} + +{% block content %} +<ul> +{% for f in file_list %} +<li><a href="{{ f }}">{{ f }}</a></li> +{% endfor %} +</ul> +{% endblock %} |