Edgewall Software

Changes between Version 11 and Version 12 of CookBook/SiteHtml/Genshi


Ignore:
Timestamp:
Jul 2, 2015, 12:17:45 AM (9 years ago)
Author:
Ryan J Ollos
Comment:

Formatting change.

Legend:

Unmodified
Added
Removed
Modified
  • CookBook/SiteHtml/Genshi

    v11 v12  
    6464If you want to change the default footer, this snippet strips out the current one and puts in my own. Tested with 1.0.1.
    6565{{{#!xml
    66   <!--! Replace standard footer with a site-specific footer -->
    67   <div id="footer" py:match="//div[@id='footer']" py:strip="True">
    68     <div id="footer">
    69         <hr />
    70       <a id="tracpowered" href="http://www.tnky.ca/"><img src="http://www.tnky.ca/TAI_tag.jpg"
    71          style="border: none; height: 98px; width: 185px;" alt="TAI Powered" /></a>
    72       <p class="left">Base Software is <a href="/about"><strong>Trac 1.0.1</strong></a><br />
    73         By Edgewall Software.</p>
    74       <p class="right">Visit Turnkey Automation at<br /><a href="http://www.tnky.ca/">
     66<!--! Replace standard footer with a site-specific footer -->
     67<div id="footer" py:match="//div[@id='footer']" py:strip="True">
     68  <div id="footer">
     69    <hr />
     70    <a id="tracpowered" href="http://www.tnky.ca/">
     71      <img src="http://www.tnky.ca/TAI_tag.jpg"
     72               style="border: none; height: 98px; width: 185px;" alt="TAI Powered" /></a>
     73    <p class="left">Base Software is <a href="/about"><strong>Trac 1.0.1</strong></a>     
     74      <br />
     75       By Edgewall Software.</p>
     76    <p class="right">Visit Turnkey Automation at<br /><a href="http://www.tnky.ca/">
    7577         http://www.tnky.ca/</a></p>
    76     </div>
    7778  </div>
     79</div>
    7880}}}
    7981