Creative Commons License
This work is licensed under a Creative Commons License. Commercial license available upon request.
Copyright © 2001-2005 Eric Pollmann.
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns:tal="http://xml.zope.org/namespaces/tal"
      xmlns:metal="http://xml.zope.org/namespaces/metal"
      metal:define-macro="default">
  <head>
    <title tal:content="here/page_title|here/title_or_id">Page title</title>
    <link rel='stylesheet' type='text/css' href='/lib/default.css'
          tal:attributes='href container/lib/default.css/absolute_url'/>
    <link rel='shortcut icon' href='/lib/favicon.ico'
          tal:attributes='href container/lib/favicon.ico/absolute_url'/>
    <script type='text/javascript' src='/lib/copyright.js'
          tal:attributes='src container/lib/copyright.js/absolute_url'></script>
    <script type='text/javascript' src='/lib/email_hide.js'
          tal:attributes='src container/lib/email_hide.js/absolute_url'></script>
    <style type="text/css"
           tal:condition="python:hasattr(here,'css')"
           tal:content="structure here/css">
        Extra CSS Goes Here.
    </style>
  </head>
  <body metal:define-slot="body">

    <div class=breadcrumbs>
      <div class="rightIcon"
           tal:define="home string:Click to Visit My Homepage;
                       email string:Click to Email Me;
                       im string:Click to Send Me an Instant Message">
        <a href="http://eric.pollmann.net/"
           title="home" tal:attributes="title im;href container/absolute_url">
          <img src="/lib/icon_home.gif" title="home" alt="home"
            tal:attributes="src container/lib/icon_home.gif/absolute_url;title home; alt home;"/>
          Homepage
        </a><br/>
        <a href="mailto:username@domain.com"
           title="email" tal:attributes="title email;href string:javascript:goForth('233 95 364 511 591 555 95 523 526 90 519 233 591 511 364 90 11 519 555 90 90 523 526 591 591 145 591 233 165',703,389,'Re: ${here/id}')">
          <img src="/lib/icon_email_compose.gif" title="email" alt="email"
            tal:attributes="src container/lib/icon_email_compose.gif/absolute_url;title email; alt email;"/>
          Email me
        </a><br/>
        <a href="/aim_me"
           title="im" tal:attributes="title im;href container/aim_me/absolute_url">
          <img src="/lib/icon_im.gif" title="im" alt="im"
            tal:attributes="src container/lib/icon_im.gif/absolute_url;title im; alt im;"/>
          IM me
        </a>
     </div>
     <span tal:replace="structure container/lib/breadcrumbs">breadcrumbs navigation</span>
     <span tal:replace="here/title_or_id">Page title</span>
     <p class='comments' style='font-weight: normal'>
       ...on <span tal:replace="here/titleSubject|string:">this subject</span>
     </p>
    </div>

    <div class=menu tal:condition="python:not (hasattr(here,'isLeaf') or hasattr(here,'hideMenu')) or hasattr(here,'showMenu')"
                    tal:replace="structure container/lib/menu">
      Menu goes here
    </div>

    <div class=content metal:define-slot="content">
      <div class=latest tal:condition="python:not hasattr(here,'isLeaf') or hasattr(here,'showLatest')"
                        tal:replace="structure container/lib/latest">
        Latest entries go here
      </div>
      <div tal:condition="python:hasattr(here.aq_explicit,'content')"
           tal:replace="structure here/content">
        Content goes here
      </div>

    </div>

    <div class=footer>
      <div class=similar tal:condition="here/keywords|python:0"
       tal:define="link string:http://eric.pollmann.net/searchbykeyword?keywords%3Alist=">
        <span tal:repeat="index python:range(test(len(here.keywords)<5,len(here.keywords),5))"
            tal:omit-tag=""><span tal:replace="structure python:'<a href=&quot;'+link+here.keywords[index]+'&quot;>More '+here.keywords[index]+'</a>';"/><br/></span>
      </div>
      <div class="rightIcon"
           tal:define="edit string:Click to edit this page;
                       source string:Click to view Zope / TAL source of this page;
                       template string:Click to view Zope / TAL source of the site template;">
        <a tal:attributes="title edit;
                           href string:${here/absolute_url}/edit">
          <img tal:attributes="src container/lib/icon_edit.gif/absolute_url;
                               title edit; alt edit;"/>
          Edit
        </a>
        |
        <a target=source tal:attributes="title source;
                           href string:${here/absolute_url}/content_source">
          <img tal:attributes="src container/lib/icon_source.gif/absolute_url;
                               title source; alt source;"/>
          Source
        </a>
        |
        <a target=source tal:attributes="title template;
                           href string:${here/absolute_url}/template_source">
          Template
        </a>
      </div>
    </div>
    <script src="http://www.google-analytics.com/urchin.js" type="text/javascript"></script>
    <script type="text/javascript">
      _uacct = "UA-229277-1";
      urchinTracker();
    </script>
  </body>
</html>