Edgewall Software

Changes between Version 8 and Version 9 of CookBook/SiteHtml/Genshi


Ignore:
Timestamp:
Jan 30, 2014, 4:27:54 PM (10 years ago)
Author:
rcooke@…
Comment:

I can't believe nobody has documented this yet!

Legend:

Unmodified
Added
Removed
Modified
  • CookBook/SiteHtml/Genshi

    v8 v9  
    6161}}}
    6262
     63
     64== Replace footer ==
     65If you want to change the default footer, this snippet strips out the current one and puts in my own.  Tested with 1.0.1.  Apologies for the formatting.
     66
     67{{{
     68  <!--! Replace standard footer with a site-specific footer -->
     69  <div id="footer" py:match="//div[@id='footer']" py:strip="True">
     70    <div id="footer">
     71        <hr />
     72      <a id="tracpowered" href="http://www.tnky.ca/"><img src="http://www.tnky.ca/TAI_tag.jpg"
     73         style="border: none; height: 98px; width: 185px; " alt="TAI Powered" /></a>
     74      <p class="left">Base Software is <a href="/about"><strong>Trac 1.0.1</strong></a><br />
     75        By Edgewall Software.</p>
     76      <p class="right">Visit Turnkey Automation at<br /><a href="http://www.tnky.ca/">
     77         http://www.tnky.ca/</a></p>
     78    </div>
     79  </div>
     80}}}
     81
     82
     83
    6384----
    6485See also: TracInterfaceCustomization, SiteStyleCss