quotes.tpl.php

This is used by the function in template.php and defines what the quotes look like. I've made it so that the author name links to the quote itself (so that I can fix typos and stuff easily from the front page)

  <span class="bqstart">“</span>
<div class="quotes-quote">
  <?php print $node->body ?>
</div>

<div class="quotes-author">
    <a href="http://www.skipthebudgie.org/node/<?php print $node->nid ?>" title="<?php print $node->title?>">
  <?php print $node->quotes_author ?>
    </a>
</div>
  <span class="bqend">”</span>