diff options
-rw-r--r-- | bn_django/photos/templates/photos/gallery_detail.html | 2 | ||||
-rw-r--r-- | bn_django/templates/about.html | 8 | ||||
-rw-r--r-- | bn_django/templates/base.html | 16 |
3 files changed, 11 insertions, 15 deletions
diff --git a/bn_django/photos/templates/photos/gallery_detail.html b/bn_django/photos/templates/photos/gallery_detail.html index 2de76d7..6720204 100644 --- a/bn_django/photos/templates/photos/gallery_detail.html +++ b/bn_django/photos/templates/photos/gallery_detail.html @@ -15,7 +15,7 @@ <table width="100%" class="thumbs"> {% for item in object.photo_set.all %} {% cycle <tr/>, , , %} <td class="photo_thumb"> - <a href="../detail/{{ item.id }}"> + <a href="../detail/{{ item.id }}/"> <img src="{{ item.thumburl }}" alt="{{ item.title }}" /> </td> {% endfor %} diff --git a/bn_django/templates/about.html b/bn_django/templates/about.html index e48d2c8..479c078 100644 --- a/bn_django/templates/about.html +++ b/bn_django/templates/about.html @@ -17,10 +17,10 @@ </div> This website is the web presence of Bryan Newbold. It serves as a: <dl> - <dt /><a href="/knowledge">brain dump</a> + <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> + <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... hhmmmmm @@ -28,7 +28,7 @@ This website is the web presence of Bryan Newbold. It serves as a: <dd /> (most importantly!) </dl> <p /> -If you're curious about the technology that runs the site, see the <a href="/credits">credits</a>. +If you're curious about the technology that runs the site, see the <a href="/credits/">credits</a>. <br /> <br /> <br /> diff --git a/bn_django/templates/base.html b/bn_django/templates/base.html index d01bf5e..689a914 100644 --- a/bn_django/templates/base.html +++ b/bn_django/templates/base.html @@ -29,10 +29,9 @@ <body> <div id="top_bar"> <div id="top_bar_content"> - <span class="righty"><a href="/knowledge">knowledge</a> - <a href="/photos">photos</a> - <a href="/code">code</a></span> - <!-- <a href="/projects">projects</a> --> + <span class="righty"><a href="/knowledge/">knowledge</a> + <a href="/photos/">photos</a> + <a href="/code/">code</a></span> <span class="lefty"><a href="/">bryannewbold.com</a></span> </div> </div> @@ -79,15 +78,12 @@ Here lies content! <b> <a href="/">home</a> -<a href="/about">about</a> -<a href="/credits">credits</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 bryan newbold, <a href="/copyright">all rights ignored</a> +produced in 2007 by bryan newbold, <a href="/copyright/">all rights ignored</a> </div> </body> </html> |