X-Git-Url: https://git.sommitrealweird.co.uk/sommitrealweird.git/blobdiff_plain/ceeb0b43e6348db02089cd642bf4e7a54bc480ce..9227f88e18b73794e86cface4f2aab31ed33f0d4:/templates/base.html diff --git a/templates/base.html b/templates/base.html index f76b66a..e604f40 100644 --- a/templates/base.html +++ b/templates/base.html @@ -4,6 +4,7 @@ <head> <title>{% block title %}{{ title }}{% endblock %}</title> <link rel="stylesheet" type="text/css" href="{{ MEDIA_URL }}style/main.css" /> + {% block extrahead %}{% endblock %} </head> <body> <div id="page"> @@ -18,13 +19,26 @@ {% for item in content_menu %} <li><a href="{{ item.url }}">{{ item.title }}</a></li> {% endfor %} - <li>Photos</li> - <li>Blog</li> + <li><a href="/photo/">Photos</a></li> + <li><a href="/blog/">Blog</a></li> </ul> {% endblock %} </div> </div> <div id="content"> + {% block breadcrumb %} + <div id="breadcrumb"> + <p> + {% for item in content_breadcrumb %} + {% if not forloop.last %} + <a href="{{ item.url }}">{{ item.title }}</a> > + {%else %} + {{ item.title }} + {% endif %} + {% endfor %} + </p> + </div> + {% endblock %} {% block submenu %} {% if content_submenu %} <div id="submenu"> @@ -41,7 +55,7 @@ {% endblock %} </div> <div id="footer"> - <p>Copyright © 2008 - <a href="mailto:iDunno@sommitrealweird.co.uk">Brett Parker</a></p> + <p>Copyright © 2008, 2009, 2010, 2011, 2012 - <a href="mailto:iDunno@sommitrealweird.co.uk">Brett Parker</a></p> </div> </div> </body>