Changeset 1151
- Timestamp:
- 04/18/06 11:48:55 (3 years ago)
- Files:
-
- trunk/LICENSE.txt (modified) (1 diff)
- trunk/newdocs/base.html (modified) (3 diffs)
- trunk/newdocs/preview (deleted)
- trunk/newdocs/static/css/master.css (modified) (1 diff)
- trunk/newdocs/static/css/print.css (modified) (1 diff)
- trunk/newdocs/static/images/logo-print.png (added)
- trunk/newdocs/template.html (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/LICENSE.txt
r353 r1151 2 2 http://www.opensource.org/licenses/mit-license.php 3 3 4 Copyright (c) 2005 Kevin Dangoor and contributors. TurboGears is a trademark of Kevin Dangoor.4 Copyright (c) 2005, 2006 Kevin Dangoor and contributors. TurboGears is a trademark of Kevin Dangoor. 5 5 6 6 Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: trunk/newdocs/base.html
r1038 r1151 3 3 4 4 <html xmlns="http://www.w3.org/1999/xhtml" xmlns:py="http://purl.org/kid/ns#"> 5 5 6 <div py:def="header()" id="header"> 6 7 … … 21 22 22 23 </div> <!-- /header --> 24 25 <div py:def="header_print()" id="header-print"> 26 <img src="${root}static/images/logo-print.png" alt="TurboGears" title="" /> 27 </div> 28 23 29 <div py:def="footer()" id="footer"> 24 30 … … 30 36 </ul> 31 37 32 Copyright © 2005 Kevin Dangoor.<br />38 Copyright © 2005, 2006 Kevin Dangoor.<br /> 33 39 TurboGears is a trademark of Kevin Dangoor.<br /> 34 40 Sponsored by <a href="http://www.blazingthings.com/">Blazing Things, LLC</a>. trunk/newdocs/static/css/master.css
r1042 r1151 69 69 right: 35px; 70 70 top: 2px; 71 } 72 73 /** header-print **/ 74 75 #header-print { 76 display: none; 71 77 } 72 78 trunk/newdocs/static/css/print.css
r1146 r1151 41 41 #header { 42 42 display:none !important; 43 } 44 45 /** header-print **/ 46 47 #header-print { 48 display: block !important; 49 width: 100% !important; 50 margin-bottom: 10px; 51 border-bottom: 1px solid; 43 52 } 44 53 trunk/newdocs/template.html
r1138 r1151 26 26 <div py:replace="header()"/> 27 27 28 <div py:replace="header_print()"/> 29 28 30 <div class="primary-content" py:content="item[:]"> 29 31